Beemer commited on
Commit ·
21626e7
0
Parent(s):
CanLex MCP server
Browse filesThis view is limited to 50 files because it contains too many changes. See raw diff
- .dockerignore +21 -0
- .gitignore +8 -0
- .mcp.json +8 -0
- Dockerfile +42 -0
- README.md +25 -0
- canlex/__init__.py +1 -0
- canlex/agreement.py +163 -0
- canlex/citator.py +138 -0
- canlex/config.py +175 -0
- canlex/directive.py +185 -0
- canlex/dmemo.py +243 -0
- canlex/embed.py +59 -0
- canlex/index.py +207 -0
- canlex/ingest.py +186 -0
- canlex/rerank.py +87 -0
- canlex/server.py +406 -0
- data/processed/A-8.8.json +801 -0
- data/processed/C-24.5.json +0 -0
- data/processed/C-38.8.json +0 -0
- data/processed/C-46.json +0 -0
- data/processed/C-52.6.json +0 -0
- data/processed/C-54.011.json +0 -0
- data/processed/C.R.C.,_c._1041.json +0 -0
- data/processed/C.R.C.,_c._296.json +0 -0
- data/processed/C.R.C.,_c._870.json +0 -0
- data/processed/F-27.json +0 -0
- data/processed/H-3.3.json +0 -0
- data/processed/I-2.5.json +0 -0
- data/processed/L-2.json +0 -0
- data/processed/P-14.8.json +1192 -0
- data/processed/P-21.json +0 -0
- data/processed/P-24.501.json +0 -0
- data/processed/P-33.01.json +0 -0
- data/processed/P-36.json +0 -0
- data/processed/Q-1.1.json +1532 -0
- data/processed/S-6.9.json +206 -0
- data/processed/S-8.35.json +0 -0
- data/processed/SOR-2000-217.json +0 -0
- data/processed/SOR-2002-227.json +0 -0
- data/processed/SOR-2002-359.json +0 -0
- data/processed/SOR-2002-412.json +376 -0
- data/processed/SOR-2012-230.json +495 -0
- data/processed/SOR-2018-108.json +0 -0
- data/processed/SOR-2018-144.json +0 -0
- data/processed/SOR-95-212.json +1039 -0
- data/processed/SOR-97-229.json +53 -0
- data/processed/SOR-97-234.json +512 -0
- data/processed/agreements.json +0 -0
- data/processed/directives.json +0 -0
- data/processed/dmemos.json +0 -0
.dockerignore
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Keep the build context small and keep secrets / regenerated files out.
|
| 2 |
+
.git/
|
| 3 |
+
.venv/
|
| 4 |
+
venv/
|
| 5 |
+
__pycache__/
|
| 6 |
+
**/__pycache__/
|
| 7 |
+
*.pyc
|
| 8 |
+
|
| 9 |
+
# Raw downloads are not needed -- only data/processed/*.json is.
|
| 10 |
+
data/raw/
|
| 11 |
+
|
| 12 |
+
# Regenerated inside the image by 'python -m canlex.embed'.
|
| 13 |
+
data/processed/embeddings.npz
|
| 14 |
+
|
| 15 |
+
# Local-only: the CanLII key (injected as a runtime secret) and disk caches.
|
| 16 |
+
canlii_key.txt
|
| 17 |
+
data/citator_dbmap.json
|
| 18 |
+
data/citator_cache.json
|
| 19 |
+
|
| 20 |
+
# Local MCP client config; not used by the remote server.
|
| 21 |
+
.mcp.json
|
.gitignore
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
__pycache__/
|
| 2 |
+
*.pyc
|
| 3 |
+
.venv/
|
| 4 |
+
venv/
|
| 5 |
+
data/raw/
|
| 6 |
+
data/processed/embeddings.npz
|
| 7 |
+
canlii_key.txt
|
| 8 |
+
data/citator_*.json
|
.mcp.json
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
{
|
| 2 |
+
"mcpServers": {
|
| 3 |
+
"canlex": {
|
| 4 |
+
"command": "C:\\projects\\CanLex\\.venv\\Scripts\\python.exe",
|
| 5 |
+
"args": ["C:\\projects\\CanLex\\canlex\\server.py"]
|
| 6 |
+
}
|
| 7 |
+
}
|
| 8 |
+
}
|
Dockerfile
ADDED
|
@@ -0,0 +1,42 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# CanLex MCP server -- remote (streamable-HTTP) image.
|
| 2 |
+
#
|
| 3 |
+
# Builds anywhere: Hugging Face Spaces, Google Cloud Run, Fly.io, plain Docker.
|
| 4 |
+
# Retrieval is fully local and key-free; the optional CanLII case citator reads
|
| 5 |
+
# its key from the CANLII_API_KEY environment variable (supplied as a host
|
| 6 |
+
# secret -- the key is never copied into the image).
|
| 7 |
+
FROM python:3.12-slim
|
| 8 |
+
|
| 9 |
+
# libgomp1 is the OpenMP runtime that onnxruntime (the reranker) links against.
|
| 10 |
+
RUN apt-get update \
|
| 11 |
+
&& apt-get install -y --no-install-recommends libgomp1 \
|
| 12 |
+
&& rm -rf /var/lib/apt/lists/*
|
| 13 |
+
|
| 14 |
+
# Run as a non-root user (UID 1000) -- required by Hugging Face Spaces.
|
| 15 |
+
RUN useradd --create-home --home-dir /app --uid 1000 app
|
| 16 |
+
WORKDIR /app
|
| 17 |
+
|
| 18 |
+
# Python dependencies first, so this layer caches across code changes.
|
| 19 |
+
COPY requirements.txt .
|
| 20 |
+
RUN pip install --no-cache-dir -r requirements.txt
|
| 21 |
+
|
| 22 |
+
# Application code and the processed corpus (section-chunk JSON).
|
| 23 |
+
COPY --chown=app:app canlex/ ./canlex/
|
| 24 |
+
COPY --chown=app:app data/processed/*.json ./data/processed/
|
| 25 |
+
|
| 26 |
+
USER app
|
| 27 |
+
ENV HOME=/app \
|
| 28 |
+
HF_HOME=/app/.hf_cache \
|
| 29 |
+
CANLEX_HTTP=1 \
|
| 30 |
+
PORT=7860 \
|
| 31 |
+
PYTHONUNBUFFERED=1
|
| 32 |
+
|
| 33 |
+
# Build the semantic embeddings and pre-fetch the cross-encoder model, so the
|
| 34 |
+
# model cache is baked into the image and the first request needs no network.
|
| 35 |
+
RUN python -m canlex.embed \
|
| 36 |
+
&& python -c "from canlex.rerank import Reranker; Reranker()"
|
| 37 |
+
|
| 38 |
+
# From here on, model files are served from the baked cache, never fetched.
|
| 39 |
+
ENV HF_HUB_OFFLINE=1
|
| 40 |
+
|
| 41 |
+
EXPOSE 7860
|
| 42 |
+
CMD ["python", "-m", "canlex.server"]
|
README.md
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
---
|
| 2 |
+
title: CanLex MCP
|
| 3 |
+
sdk: docker
|
| 4 |
+
app_port: 7860
|
| 5 |
+
pinned: false
|
| 6 |
+
---
|
| 7 |
+
|
| 8 |
+
# CanLex MCP
|
| 9 |
+
|
| 10 |
+
A remote [Model Context Protocol](https://modelcontextprotocol.io) server for
|
| 11 |
+
Canadian legal research. It exposes four read-only tools over streamable HTTP:
|
| 12 |
+
|
| 13 |
+
- **canlex_search_legislation** — hybrid (BM25 + semantic) search with a
|
| 14 |
+
cross-encoder reranker over federal border, customs, criminal, drug,
|
| 15 |
+
food/health, labour and privacy legislation, CBSA D-Memoranda, Treasury Board
|
| 16 |
+
collective agreements, and National Joint Council directives.
|
| 17 |
+
- **canlex_get_section** — fetch one provision verbatim by Act and section.
|
| 18 |
+
- **canlex_list_acts** — list the corpus and its currency.
|
| 19 |
+
- **canlex_case** — live CanLII case citator (citation graph for a case URL).
|
| 20 |
+
|
| 21 |
+
Retrieval runs fully locally inside the container and needs no API key. The
|
| 22 |
+
optional case citator reads a CanLII key from the `CANLII_API_KEY` environment
|
| 23 |
+
variable.
|
| 24 |
+
|
| 25 |
+
Add this Space's `/mcp` URL as a custom connector in any Claude client.
|
canlex/__init__.py
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
"""CanLex - Canadian legal retrieval for Claude."""
|
canlex/agreement.py
ADDED
|
@@ -0,0 +1,163 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""Ingest Treasury Board collective agreements (HTML) into Article-level chunks.
|
| 2 |
+
|
| 3 |
+
A collective agreement is a binding contract between the Treasury Board and a
|
| 4 |
+
bargaining agent for one occupational group. Chunks are tagged
|
| 5 |
+
doc_type="agreement" so CanLex keeps them distinct from legislation and guidance.
|
| 6 |
+
"""
|
| 7 |
+
import json
|
| 8 |
+
import re
|
| 9 |
+
import subprocess
|
| 10 |
+
import sys
|
| 11 |
+
import time
|
| 12 |
+
|
| 13 |
+
from bs4 import BeautifulSoup
|
| 14 |
+
|
| 15 |
+
from .config import RAW_DIR, PROCESSED_DIR
|
| 16 |
+
|
| 17 |
+
AGREEMENT_DIR = RAW_DIR / "agreements"
|
| 18 |
+
OUT_FILE = PROCESSED_DIR / "agreements.json"
|
| 19 |
+
# canada.ca rejects non-browser user agents, so present a browser one.
|
| 20 |
+
_UA = ("Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 "
|
| 21 |
+
"(KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36")
|
| 22 |
+
|
| 23 |
+
# Treasury Board collective agreements to ingest. Add an entry to ingest more.
|
| 24 |
+
AGREEMENTS = {
|
| 25 |
+
"FB": {
|
| 26 |
+
"short": "FB Agreement",
|
| 27 |
+
"name": "FB Group Collective Agreement (Border Services)",
|
| 28 |
+
"cite": "FB Collective Agreement",
|
| 29 |
+
"url": "https://www.canada.ca/en/treasury-board-secretariat/topics/pay/"
|
| 30 |
+
"collective-agreements/fb.html",
|
| 31 |
+
},
|
| 32 |
+
}
|
| 33 |
+
|
| 34 |
+
_SKIP_HEADINGS = {"table of contents", "note to readers", "page details",
|
| 35 |
+
"on this page"}
|
| 36 |
+
_CONTENT_TAGS = {"p", "dl", "table", "h4", "h5", "h6", "blockquote"}
|
| 37 |
+
_ARTICLE = re.compile(r"Article\s+(\S+?)\s*[:–-]\s*(.+)", re.I)
|
| 38 |
+
|
| 39 |
+
|
| 40 |
+
def _norm(text):
|
| 41 |
+
return re.sub(r"\s+", " ", text or "").strip()
|
| 42 |
+
|
| 43 |
+
|
| 44 |
+
def _fetch(url, dest, force=False):
|
| 45 |
+
"""Download a page. canada.ca blocks Python's HTTP client at the TLS layer,
|
| 46 |
+
so fetch via PowerShell's (.NET) HTTP stack, which the site accepts."""
|
| 47 |
+
if dest.exists() and not force:
|
| 48 |
+
return dest.read_bytes()
|
| 49 |
+
dest.parent.mkdir(parents=True, exist_ok=True)
|
| 50 |
+
command = (f"Invoke-WebRequest -Uri '{url}' -OutFile '{dest}' "
|
| 51 |
+
f"-UseBasicParsing -UserAgent '{_UA}'")
|
| 52 |
+
subprocess.run(["powershell", "-NoProfile", "-NonInteractive", "-Command", command],
|
| 53 |
+
check=True, capture_output=True, timeout=180)
|
| 54 |
+
time.sleep(0.5) # be polite to the server
|
| 55 |
+
return dest.read_bytes()
|
| 56 |
+
|
| 57 |
+
|
| 58 |
+
def _block_text(heading):
|
| 59 |
+
"""Readable text from a heading up to the next h2/h3 (sections unwrapped)."""
|
| 60 |
+
lines = []
|
| 61 |
+
for sib in heading.find_next_siblings():
|
| 62 |
+
if sib.name in ("h2", "h3"):
|
| 63 |
+
break
|
| 64 |
+
if sib.name in ("ul", "ol"):
|
| 65 |
+
for li in sib.find_all("li", recursive=False):
|
| 66 |
+
item = _norm(li.get_text(" ", strip=True))
|
| 67 |
+
if item:
|
| 68 |
+
lines.append(f"- {item}")
|
| 69 |
+
elif sib.name in _CONTENT_TAGS:
|
| 70 |
+
text = _norm(sib.get_text(" ", strip=True))
|
| 71 |
+
if text:
|
| 72 |
+
lines.append(text)
|
| 73 |
+
return "\n".join(lines)
|
| 74 |
+
|
| 75 |
+
|
| 76 |
+
def parse_agreement(html, code):
|
| 77 |
+
"""Parse a collective agreement page into one chunk per Article / Appendix."""
|
| 78 |
+
meta = AGREEMENTS[code]
|
| 79 |
+
soup = BeautifulSoup(html, "html.parser")
|
| 80 |
+
main = soup.find("main")
|
| 81 |
+
if main is None:
|
| 82 |
+
return []
|
| 83 |
+
|
| 84 |
+
# The first <time datetime> is the agreement's expiry; the dateModified one
|
| 85 |
+
# is the page's date.
|
| 86 |
+
expiry = ""
|
| 87 |
+
for t in main.find_all("time"):
|
| 88 |
+
if t.get("datetime") and t.get("property") != "dateModified":
|
| 89 |
+
expiry = _norm(t.get("datetime"))
|
| 90 |
+
break
|
| 91 |
+
|
| 92 |
+
for tag in main.find_all(["section", "div"]):
|
| 93 |
+
tag.unwrap() # flatten so each heading and its content become siblings
|
| 94 |
+
|
| 95 |
+
chunks = []
|
| 96 |
+
current_part = ""
|
| 97 |
+
for h in main.find_all(["h2", "h3"]):
|
| 98 |
+
if "wb-inv" in (h.get("class") or []):
|
| 99 |
+
continue
|
| 100 |
+
text = _norm(h.get_text(" ", strip=True)).lstrip("*").strip()
|
| 101 |
+
if not text or text.lower() in _SKIP_HEADINGS:
|
| 102 |
+
continue
|
| 103 |
+
if h.name == "h2":
|
| 104 |
+
current_part = text
|
| 105 |
+
body = _block_text(h)
|
| 106 |
+
if not body:
|
| 107 |
+
continue
|
| 108 |
+
|
| 109 |
+
article = _ARTICLE.match(text)
|
| 110 |
+
if article:
|
| 111 |
+
number = article.group(1).rstrip(":.")
|
| 112 |
+
note = article.group(2).strip()
|
| 113 |
+
citation = f"{meta['cite']}, Article {number}"
|
| 114 |
+
elif re.match(r"Appendix\b", text, re.I):
|
| 115 |
+
number, note = text, ""
|
| 116 |
+
citation = f"{meta['cite']}, {text}"
|
| 117 |
+
else:
|
| 118 |
+
# Memoranda of Agreement/Understanding have long titles: keep them in
|
| 119 |
+
# the note only, so the rendered header does not repeat them.
|
| 120 |
+
number, note = "", text
|
| 121 |
+
citation = meta["cite"]
|
| 122 |
+
|
| 123 |
+
chunks.append({
|
| 124 |
+
"id": f"agreement-{code}-{len(chunks) + 1}",
|
| 125 |
+
"doc_type": "agreement",
|
| 126 |
+
"act_code": code,
|
| 127 |
+
"act_short": meta["short"],
|
| 128 |
+
"act_name": meta["name"],
|
| 129 |
+
"section": number,
|
| 130 |
+
"marginal_note": note,
|
| 131 |
+
"part": current_part if h.name == "h3" else "",
|
| 132 |
+
"division": "",
|
| 133 |
+
"heading": "",
|
| 134 |
+
"text": body,
|
| 135 |
+
"history": "",
|
| 136 |
+
"last_amended": "",
|
| 137 |
+
"current_to": expiry,
|
| 138 |
+
"citation": citation,
|
| 139 |
+
"source_url": meta["url"],
|
| 140 |
+
})
|
| 141 |
+
return chunks
|
| 142 |
+
|
| 143 |
+
|
| 144 |
+
def main():
|
| 145 |
+
force = "--force" in sys.argv
|
| 146 |
+
all_chunks = []
|
| 147 |
+
for code, meta in AGREEMENTS.items():
|
| 148 |
+
print(f"Ingesting {code} ({meta['short']})...")
|
| 149 |
+
try:
|
| 150 |
+
html = _fetch(meta["url"], AGREEMENT_DIR / f"{code}.html", force=force)
|
| 151 |
+
chunks = parse_agreement(html, code)
|
| 152 |
+
print(f" {len(chunks)} chunks")
|
| 153 |
+
all_chunks.extend(chunks)
|
| 154 |
+
except Exception as exc:
|
| 155 |
+
print(f" FAILED {code}: {type(exc).__name__}: {exc}")
|
| 156 |
+
PROCESSED_DIR.mkdir(parents=True, exist_ok=True)
|
| 157 |
+
OUT_FILE.write_text(json.dumps(all_chunks, ensure_ascii=False, indent=2),
|
| 158 |
+
encoding="utf-8")
|
| 159 |
+
print(f"\n{len(all_chunks)} chunks from {len(AGREEMENTS)} agreement(s) -> {OUT_FILE.name}")
|
| 160 |
+
|
| 161 |
+
|
| 162 |
+
if __name__ == "__main__":
|
| 163 |
+
main()
|
canlex/citator.py
ADDED
|
@@ -0,0 +1,138 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""CanLII case citator -- live lookup of a Canadian case's citation graph.
|
| 2 |
+
|
| 3 |
+
Uses the CanLII API (key in canlii_key.txt). The API has no name/topic search,
|
| 4 |
+
so a case is identified by its full canlii.org URL. Responses are cached on disk
|
| 5 |
+
and calls are throttled, because the API rate-limits aggressively.
|
| 6 |
+
"""
|
| 7 |
+
import json
|
| 8 |
+
import os
|
| 9 |
+
import re
|
| 10 |
+
import sys
|
| 11 |
+
import time
|
| 12 |
+
import urllib.error
|
| 13 |
+
import urllib.request
|
| 14 |
+
|
| 15 |
+
from .config import ROOT, DATA_DIR
|
| 16 |
+
|
| 17 |
+
API = "https://api.canlii.org/v1"
|
| 18 |
+
KEY_FILE = ROOT / "canlii_key.txt"
|
| 19 |
+
_PLACEHOLDER = "PASTE-YOUR-CANLII-API-KEY-ON-THIS-LINE"
|
| 20 |
+
_DBMAP_FILE = DATA_DIR / "citator_dbmap.json"
|
| 21 |
+
_CACHE_FILE = DATA_DIR / "citator_cache.json"
|
| 22 |
+
_THROTTLE = 3.0 # seconds between CanLII API calls (the API rate-limits hard)
|
| 23 |
+
_MAX_LIST = 20 # items shown per citator list (lists can run to thousands)
|
| 24 |
+
_CASE_URL = re.compile(r"canlii\.org/[a-z]{2}/[a-z]+/([a-z0-9-]+)/doc/\d+/([a-z0-9-]+)")
|
| 25 |
+
_DB_URL = re.compile(r"canlii\.org/[a-z]{2}/[a-z]+/([a-z0-9-]+)/?$")
|
| 26 |
+
|
| 27 |
+
|
| 28 |
+
def api_key():
|
| 29 |
+
"""Return the configured CanLII API key, or '' if not set.
|
| 30 |
+
|
| 31 |
+
The CANLII_API_KEY environment variable is checked first -- the remote
|
| 32 |
+
deployment injects the key as a secret rather than shipping the file.
|
| 33 |
+
A local run falls back to canlii_key.txt.
|
| 34 |
+
"""
|
| 35 |
+
env_key = os.environ.get("CANLII_API_KEY", "").strip()
|
| 36 |
+
if env_key and env_key != _PLACEHOLDER:
|
| 37 |
+
return env_key
|
| 38 |
+
if not KEY_FILE.exists():
|
| 39 |
+
return ""
|
| 40 |
+
key = KEY_FILE.read_text(encoding="utf-8").strip()
|
| 41 |
+
return "" if not key or key == _PLACEHOLDER else key
|
| 42 |
+
|
| 43 |
+
|
| 44 |
+
def _load_json(path):
|
| 45 |
+
try:
|
| 46 |
+
return json.loads(path.read_text(encoding="utf-8"))
|
| 47 |
+
except Exception:
|
| 48 |
+
return {}
|
| 49 |
+
|
| 50 |
+
|
| 51 |
+
class Citator:
|
| 52 |
+
"""Live CanLII citator with on-disk caching and rate-limit throttling."""
|
| 53 |
+
|
| 54 |
+
def __init__(self):
|
| 55 |
+
self.key = api_key()
|
| 56 |
+
if not self.key:
|
| 57 |
+
raise RuntimeError(f"No CanLII API key -- put your key in {KEY_FILE}.")
|
| 58 |
+
self._dbmap = _load_json(_DBMAP_FILE) # URL court segment -> databaseId
|
| 59 |
+
self._cache = _load_json(_CACHE_FILE) # case URL -> report
|
| 60 |
+
|
| 61 |
+
def _get(self, path):
|
| 62 |
+
"""Throttled GET against the CanLII API, retrying on HTTP 429."""
|
| 63 |
+
for attempt in range(3):
|
| 64 |
+
time.sleep(_THROTTLE if attempt == 0 else 15.0)
|
| 65 |
+
sep = "&" if "?" in path else "?"
|
| 66 |
+
url = f"{API}/{path}{sep}api_key={self.key}"
|
| 67 |
+
try:
|
| 68 |
+
with urllib.request.urlopen(url, timeout=45) as resp:
|
| 69 |
+
return json.loads(resp.read().decode("utf-8"))
|
| 70 |
+
except urllib.error.HTTPError as exc:
|
| 71 |
+
if exc.code == 429 and attempt < 2:
|
| 72 |
+
continue
|
| 73 |
+
raise
|
| 74 |
+
raise RuntimeError("CanLII API rate limit reached; retry shortly.")
|
| 75 |
+
|
| 76 |
+
def _ensure_dbmap(self):
|
| 77 |
+
if self._dbmap:
|
| 78 |
+
return
|
| 79 |
+
data = self._get("caseBrowse/en/")
|
| 80 |
+
dbmap = {}
|
| 81 |
+
for db in data.get("caseDatabases", []):
|
| 82 |
+
match = _DB_URL.search(db.get("url") or "")
|
| 83 |
+
if match and db.get("databaseId"):
|
| 84 |
+
dbmap[match.group(1)] = db["databaseId"]
|
| 85 |
+
self._dbmap = dbmap
|
| 86 |
+
DATA_DIR.mkdir(parents=True, exist_ok=True)
|
| 87 |
+
_DBMAP_FILE.write_text(json.dumps(dbmap), encoding="utf-8")
|
| 88 |
+
|
| 89 |
+
def _citator(self, db, case_id, kind):
|
| 90 |
+
data = self._get(f"caseCitator/en/{db}/{case_id}/{kind}")
|
| 91 |
+
items = data.get(kind, [])
|
| 92 |
+
return {"total": len(items), "items": items[:_MAX_LIST]}
|
| 93 |
+
|
| 94 |
+
def case_report(self, case_url):
|
| 95 |
+
"""Return a citation-graph report for a case, given its canlii.org URL."""
|
| 96 |
+
if case_url in self._cache:
|
| 97 |
+
return self._cache[case_url]
|
| 98 |
+
match = _CASE_URL.search(case_url)
|
| 99 |
+
if not match:
|
| 100 |
+
return {"error": "Provide a full canlii.org case URL, e.g. "
|
| 101 |
+
"https://www.canlii.org/en/ca/scc/doc/2019/2019scc65/2019scc65.html"}
|
| 102 |
+
self._ensure_dbmap()
|
| 103 |
+
segment, case_id = match.group(1), match.group(2)
|
| 104 |
+
db = self._dbmap.get(segment)
|
| 105 |
+
if not db:
|
| 106 |
+
return {"error": f"Unrecognized CanLII court segment '{segment}'."}
|
| 107 |
+
report = {
|
| 108 |
+
"meta": self._get(f"caseBrowse/en/{db}/{case_id}/"),
|
| 109 |
+
"citingCases": self._citator(db, case_id, "citingCases"),
|
| 110 |
+
"citedCases": self._citator(db, case_id, "citedCases"),
|
| 111 |
+
"citedLegislations": self._citator(db, case_id, "citedLegislations"),
|
| 112 |
+
}
|
| 113 |
+
self._cache[case_url] = report
|
| 114 |
+
DATA_DIR.mkdir(parents=True, exist_ok=True)
|
| 115 |
+
_CACHE_FILE.write_text(json.dumps(self._cache, ensure_ascii=False),
|
| 116 |
+
encoding="utf-8")
|
| 117 |
+
return report
|
| 118 |
+
|
| 119 |
+
|
| 120 |
+
def main():
|
| 121 |
+
if len(sys.argv) < 2:
|
| 122 |
+
print('usage: python -m canlex.citator "<canlii-case-url>"')
|
| 123 |
+
return
|
| 124 |
+
report = Citator().case_report(sys.argv[1])
|
| 125 |
+
if "error" in report:
|
| 126 |
+
print("ERROR:", report["error"])
|
| 127 |
+
return
|
| 128 |
+
meta = report["meta"]
|
| 129 |
+
print(f"{meta.get('title')} -- {meta.get('citation')} ({meta.get('decisionDate')})")
|
| 130 |
+
print(f" cited by: {report['citingCases']['total']}")
|
| 131 |
+
print(f" cites: {report['citedCases']['total']}")
|
| 132 |
+
print(f" legislation cited: {report['citedLegislations']['total']}")
|
| 133 |
+
for item in report["citedLegislations"]["items"][:6]:
|
| 134 |
+
print(f" - {item.get('title')} ({item.get('citation')})")
|
| 135 |
+
|
| 136 |
+
|
| 137 |
+
if __name__ == "__main__":
|
| 138 |
+
main()
|
canlex/config.py
ADDED
|
@@ -0,0 +1,175 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""Paths and legislation sources for CanLex."""
|
| 2 |
+
from pathlib import Path
|
| 3 |
+
|
| 4 |
+
ROOT = Path(__file__).resolve().parent.parent
|
| 5 |
+
DATA_DIR = ROOT / "data"
|
| 6 |
+
RAW_DIR = DATA_DIR / "raw"
|
| 7 |
+
PROCESSED_DIR = DATA_DIR / "processed"
|
| 8 |
+
|
| 9 |
+
# Justice Laws Website XML sources. Each key is the Justice Laws consolidated
|
| 10 |
+
# identifier, used as the XML filename and the local raw/processed filename.
|
| 11 |
+
# To add an instrument, add an entry with a verified xml_url.
|
| 12 |
+
#
|
| 13 |
+
# The Constitution Acts, 1867 to 1982 are intentionally absent: Justice Laws
|
| 14 |
+
# publishes them only as HTML/PDF, with no XML version available.
|
| 15 |
+
SOURCES = {
|
| 16 |
+
# --- Immigration ---
|
| 17 |
+
"I-2.5": {
|
| 18 |
+
"short": "IRPA", "name": "Immigration and Refugee Protection Act", "kind": "act",
|
| 19 |
+
"xml_url": "https://laws-lois.justice.gc.ca/eng/XML/I-2.5.xml",
|
| 20 |
+
"web_base": "https://laws-lois.justice.gc.ca/eng/acts/i-2.5/"},
|
| 21 |
+
"SOR-2002-227": {
|
| 22 |
+
"short": "IRPR", "name": "Immigration and Refugee Protection Regulations",
|
| 23 |
+
"kind": "regulation",
|
| 24 |
+
"xml_url": "https://laws-lois.justice.gc.ca/eng/XML/SOR-2002-227.xml",
|
| 25 |
+
"web_base": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2002-227/"},
|
| 26 |
+
|
| 27 |
+
# --- Customs & trade ---
|
| 28 |
+
"C-52.6": {
|
| 29 |
+
"short": "Customs Act", "name": "Customs Act", "kind": "act",
|
| 30 |
+
"xml_url": "https://laws-lois.justice.gc.ca/eng/XML/C-52.6.xml",
|
| 31 |
+
"web_base": "https://laws-lois.justice.gc.ca/eng/acts/c-52.6/"},
|
| 32 |
+
"C-54.011": {
|
| 33 |
+
"short": "Customs Tariff", "name": "Customs Tariff", "kind": "act",
|
| 34 |
+
"xml_url": "https://laws-lois.justice.gc.ca/eng/XML/C-54.011.xml",
|
| 35 |
+
"web_base": "https://laws-lois.justice.gc.ca/eng/acts/c-54.011/"},
|
| 36 |
+
"S-8.35": {
|
| 37 |
+
"short": "Luxury Tax Act", "name": "Select Luxury Items Tax Act", "kind": "act",
|
| 38 |
+
"xml_url": "https://laws-lois.justice.gc.ca/eng/XML/S-8.35.xml",
|
| 39 |
+
"web_base": "https://laws-lois.justice.gc.ca/eng/acts/s-8.35/"},
|
| 40 |
+
|
| 41 |
+
# --- Criminal & financial crime ---
|
| 42 |
+
"C-46": {
|
| 43 |
+
"short": "Criminal Code", "name": "Criminal Code", "kind": "act",
|
| 44 |
+
"xml_url": "https://laws-lois.justice.gc.ca/eng/XML/C-46.xml",
|
| 45 |
+
"web_base": "https://laws-lois.justice.gc.ca/eng/acts/c-46/"},
|
| 46 |
+
"P-24.501": {
|
| 47 |
+
"short": "PCMLTFA",
|
| 48 |
+
"name": "Proceeds of Crime (Money Laundering) and Terrorist Financing Act",
|
| 49 |
+
"kind": "act",
|
| 50 |
+
"xml_url": "https://laws-lois.justice.gc.ca/eng/XML/P-24.501.xml",
|
| 51 |
+
"web_base": "https://laws-lois.justice.gc.ca/eng/acts/p-24.501/"},
|
| 52 |
+
"SOR-2002-412": {
|
| 53 |
+
"short": "Cross-border Currency Reporting Regs",
|
| 54 |
+
"name": "Cross-border Currency and Monetary Instruments Reporting Regulations",
|
| 55 |
+
"kind": "regulation",
|
| 56 |
+
"xml_url": "https://laws-lois.justice.gc.ca/eng/XML/SOR-2002-412.xml",
|
| 57 |
+
"web_base": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2002-412/"},
|
| 58 |
+
"S-6.9": {
|
| 59 |
+
"short": "SCIDA", "name": "Security of Canada Information Disclosure Act",
|
| 60 |
+
"kind": "act",
|
| 61 |
+
"xml_url": "https://laws-lois.justice.gc.ca/eng/XML/S-6.9.xml",
|
| 62 |
+
"web_base": "https://laws-lois.justice.gc.ca/eng/acts/s-6.9/"},
|
| 63 |
+
|
| 64 |
+
# --- Controlled substances & cannabis ---
|
| 65 |
+
"C-38.8": {
|
| 66 |
+
"short": "CDSA", "name": "Controlled Drugs and Substances Act", "kind": "act",
|
| 67 |
+
"xml_url": "https://laws-lois.justice.gc.ca/eng/XML/C-38.8.xml",
|
| 68 |
+
"web_base": "https://laws-lois.justice.gc.ca/eng/acts/c-38.8/"},
|
| 69 |
+
"SOR-97-234": {
|
| 70 |
+
"short": "CDSA Police Enforcement Regs",
|
| 71 |
+
"name": "Controlled Drugs and Substances Act (Police Enforcement) Regulations",
|
| 72 |
+
"kind": "regulation",
|
| 73 |
+
"xml_url": "https://laws-lois.justice.gc.ca/eng/XML/SOR-97-234.xml",
|
| 74 |
+
"web_base": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-97-234/"},
|
| 75 |
+
"SOR-2000-217": {
|
| 76 |
+
"short": "Benzodiazepines Regs",
|
| 77 |
+
"name": "Benzodiazepines and Other Targeted Substances Regulations",
|
| 78 |
+
"kind": "regulation",
|
| 79 |
+
"xml_url": "https://laws-lois.justice.gc.ca/eng/XML/SOR-2000-217.xml",
|
| 80 |
+
"web_base": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2000-217/"},
|
| 81 |
+
"C.R.C.,_c._1041": {
|
| 82 |
+
"short": "Narcotic Control Regs", "name": "Narcotic Control Regulations",
|
| 83 |
+
"kind": "regulation",
|
| 84 |
+
"xml_url": "https://laws-lois.justice.gc.ca/eng/XML/C.R.C.%2C_c._1041.xml",
|
| 85 |
+
"web_base": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._1041/"},
|
| 86 |
+
"SOR-2012-230": {
|
| 87 |
+
"short": "New Classes of Practitioners Regs",
|
| 88 |
+
"name": "New Classes of Practitioners Regulations", "kind": "regulation",
|
| 89 |
+
"xml_url": "https://laws-lois.justice.gc.ca/eng/XML/SOR-2012-230.xml",
|
| 90 |
+
"web_base": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2012-230/"},
|
| 91 |
+
"SOR-2002-359": {
|
| 92 |
+
"short": "Precursor Control Regs", "name": "Precursor Control Regulations",
|
| 93 |
+
"kind": "regulation",
|
| 94 |
+
"xml_url": "https://laws-lois.justice.gc.ca/eng/XML/SOR-2002-359.xml",
|
| 95 |
+
"web_base": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2002-359/"},
|
| 96 |
+
"SOR-97-229": {
|
| 97 |
+
"short": "Precursor & Substance Exemption Regs",
|
| 98 |
+
"name": "Regulations Exempting Certain Precursors and Controlled Substances "
|
| 99 |
+
"from the Application of the Controlled Drugs and Substances Act",
|
| 100 |
+
"kind": "regulation",
|
| 101 |
+
"xml_url": "https://laws-lois.justice.gc.ca/eng/XML/SOR-97-229.xml",
|
| 102 |
+
"web_base": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-97-229/"},
|
| 103 |
+
"C-24.5": {
|
| 104 |
+
"short": "Cannabis Act", "name": "Cannabis Act", "kind": "act",
|
| 105 |
+
"xml_url": "https://laws-lois.justice.gc.ca/eng/XML/C-24.5.xml",
|
| 106 |
+
"web_base": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/"},
|
| 107 |
+
"SOR-2018-144": {
|
| 108 |
+
"short": "Cannabis Regs", "name": "Cannabis Regulations", "kind": "regulation",
|
| 109 |
+
"xml_url": "https://laws-lois.justice.gc.ca/eng/XML/SOR-2018-144.xml",
|
| 110 |
+
"web_base": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2018-144/"},
|
| 111 |
+
|
| 112 |
+
# --- Food, health, agriculture ---
|
| 113 |
+
"F-27": {
|
| 114 |
+
"short": "Food and Drugs Act", "name": "Food and Drugs Act", "kind": "act",
|
| 115 |
+
"xml_url": "https://laws-lois.justice.gc.ca/eng/XML/F-27.xml",
|
| 116 |
+
"web_base": "https://laws-lois.justice.gc.ca/eng/acts/f-27/"},
|
| 117 |
+
"C.R.C.,_c._870": {
|
| 118 |
+
"short": "Food and Drug Regs", "name": "Food and Drug Regulations",
|
| 119 |
+
"kind": "regulation",
|
| 120 |
+
"xml_url": "https://laws-lois.justice.gc.ca/eng/XML/C.R.C.%2C_c._870.xml",
|
| 121 |
+
"web_base": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._870/"},
|
| 122 |
+
"H-3.3": {
|
| 123 |
+
"short": "Health of Animals Act", "name": "Health of Animals Act", "kind": "act",
|
| 124 |
+
"xml_url": "https://laws-lois.justice.gc.ca/eng/XML/H-3.3.xml",
|
| 125 |
+
"web_base": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/"},
|
| 126 |
+
"C.R.C.,_c._296": {
|
| 127 |
+
"short": "Health of Animals Regs", "name": "Health of Animals Regulations",
|
| 128 |
+
"kind": "regulation",
|
| 129 |
+
"xml_url": "https://laws-lois.justice.gc.ca/eng/XML/C.R.C.%2C_c._296.xml",
|
| 130 |
+
"web_base": "https://laws-lois.justice.gc.ca/eng/regulations/C.R.C.%2C_c._296/"},
|
| 131 |
+
"P-14.8": {
|
| 132 |
+
"short": "Plant Protection Act", "name": "Plant Protection Act", "kind": "act",
|
| 133 |
+
"xml_url": "https://laws-lois.justice.gc.ca/eng/XML/P-14.8.xml",
|
| 134 |
+
"web_base": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/"},
|
| 135 |
+
"SOR-95-212": {
|
| 136 |
+
"short": "Plant Protection Regs", "name": "Plant Protection Regulations",
|
| 137 |
+
"kind": "regulation",
|
| 138 |
+
"xml_url": "https://laws-lois.justice.gc.ca/eng/XML/SOR-95-212.xml",
|
| 139 |
+
"web_base": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-95-212/"},
|
| 140 |
+
"SOR-2018-108": {
|
| 141 |
+
"short": "Safe Food for Canadians Regs",
|
| 142 |
+
"name": "Safe Food for Canadians Regulations", "kind": "regulation",
|
| 143 |
+
"xml_url": "https://laws-lois.justice.gc.ca/eng/XML/SOR-2018-108.xml",
|
| 144 |
+
"web_base": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2018-108/"},
|
| 145 |
+
"A-8.8": {
|
| 146 |
+
"short": "AAAMPA",
|
| 147 |
+
"name": "Agriculture and Agri-Food Administrative Monetary Penalties Act",
|
| 148 |
+
"kind": "act",
|
| 149 |
+
"xml_url": "https://laws-lois.justice.gc.ca/eng/XML/A-8.8.xml",
|
| 150 |
+
"web_base": "https://laws-lois.justice.gc.ca/eng/acts/a-8.8/"},
|
| 151 |
+
"Q-1.1": {
|
| 152 |
+
"short": "Quarantine Act", "name": "Quarantine Act", "kind": "act",
|
| 153 |
+
"xml_url": "https://laws-lois.justice.gc.ca/eng/XML/Q-1.1.xml",
|
| 154 |
+
"web_base": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/"},
|
| 155 |
+
|
| 156 |
+
# --- Labour & public service ---
|
| 157 |
+
"L-2": {
|
| 158 |
+
"short": "Canada Labour Code", "name": "Canada Labour Code", "kind": "act",
|
| 159 |
+
"xml_url": "https://laws-lois.justice.gc.ca/eng/XML/L-2.xml",
|
| 160 |
+
"web_base": "https://laws-lois.justice.gc.ca/eng/acts/l-2/"},
|
| 161 |
+
"P-33.01": {
|
| 162 |
+
"short": "PSEA", "name": "Public Service Employment Act", "kind": "act",
|
| 163 |
+
"xml_url": "https://laws-lois.justice.gc.ca/eng/XML/P-33.01.xml",
|
| 164 |
+
"web_base": "https://laws-lois.justice.gc.ca/eng/acts/p-33.01/"},
|
| 165 |
+
"P-36": {
|
| 166 |
+
"short": "PSSA", "name": "Public Service Superannuation Act", "kind": "act",
|
| 167 |
+
"xml_url": "https://laws-lois.justice.gc.ca/eng/XML/P-36.xml",
|
| 168 |
+
"web_base": "https://laws-lois.justice.gc.ca/eng/acts/p-36/"},
|
| 169 |
+
|
| 170 |
+
# --- Privacy ---
|
| 171 |
+
"P-21": {
|
| 172 |
+
"short": "Privacy Act", "name": "Privacy Act", "kind": "act",
|
| 173 |
+
"xml_url": "https://laws-lois.justice.gc.ca/eng/XML/P-21.xml",
|
| 174 |
+
"web_base": "https://laws-lois.justice.gc.ca/eng/acts/p-21/"},
|
| 175 |
+
}
|
canlex/directive.py
ADDED
|
@@ -0,0 +1,185 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""Ingest National Joint Council directives (HTML) into section-level chunks.
|
| 2 |
+
|
| 3 |
+
NJC directives are negotiated by employer and bargaining-agent representatives;
|
| 4 |
+
their provisions form part of collective agreements (and the rate tables in
|
| 5 |
+
their appendices apply too). Chunks are tagged doc_type="directive".
|
| 6 |
+
"""
|
| 7 |
+
import json
|
| 8 |
+
import re
|
| 9 |
+
import subprocess
|
| 10 |
+
import sys
|
| 11 |
+
import time
|
| 12 |
+
|
| 13 |
+
from bs4 import BeautifulSoup
|
| 14 |
+
|
| 15 |
+
from .config import RAW_DIR, PROCESSED_DIR
|
| 16 |
+
|
| 17 |
+
INDEX_URL = "https://www.njc-cnm.gc.ca/directive/en"
|
| 18 |
+
BASE = "https://www.njc-cnm.gc.ca"
|
| 19 |
+
DIRECTIVE_DIR = RAW_DIR / "directives"
|
| 20 |
+
OUT_FILE = PROCESSED_DIR / "directives.json"
|
| 21 |
+
_UA = ("Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 "
|
| 22 |
+
"(KHTML, like Gecko) Chrome/124.0.0.0 Safari/537.36")
|
| 23 |
+
_CONTENT_TAGS = {"p", "dl", "table", "h4", "h5", "h6", "blockquote"}
|
| 24 |
+
_NUMBERED = re.compile(r"^(\d+(?:\.\d+)*)\s+(.+)")
|
| 25 |
+
_CODE = re.compile(r"/directive/([^/]+)/")
|
| 26 |
+
|
| 27 |
+
|
| 28 |
+
def _norm(text):
|
| 29 |
+
return re.sub(r"\s+", " ", text or "").strip()
|
| 30 |
+
|
| 31 |
+
|
| 32 |
+
def _fetch(url, dest, force=False):
|
| 33 |
+
"""Fetch via PowerShell's (.NET) HTTP stack -- some government sites block
|
| 34 |
+
Python's HTTP client at the TLS layer."""
|
| 35 |
+
if dest.exists() and not force:
|
| 36 |
+
return dest.read_bytes()
|
| 37 |
+
dest.parent.mkdir(parents=True, exist_ok=True)
|
| 38 |
+
command = (f"Invoke-WebRequest -Uri '{url}' -OutFile '{dest}' "
|
| 39 |
+
f"-UseBasicParsing -UserAgent '{_UA}'")
|
| 40 |
+
subprocess.run(["powershell", "-NoProfile", "-NonInteractive", "-Command", command],
|
| 41 |
+
check=True, capture_output=True, timeout=180)
|
| 42 |
+
time.sleep(0.5) # be polite to the server
|
| 43 |
+
return dest.read_bytes()
|
| 44 |
+
|
| 45 |
+
|
| 46 |
+
def directive_links(force=False):
|
| 47 |
+
"""Return [(url, title, date), ...] for the current NJC directives."""
|
| 48 |
+
html = _fetch(INDEX_URL, DIRECTIVE_DIR / "_index.html", force=force)
|
| 49 |
+
soup = BeautifulSoup(html, "html.parser")
|
| 50 |
+
ul = soup.find("ul", class_="directive-list")
|
| 51 |
+
if ul is None:
|
| 52 |
+
return []
|
| 53 |
+
out = []
|
| 54 |
+
for li in ul.find_all("li", recursive=False):
|
| 55 |
+
a = li.find("a", href=True) # the first <a> is the current directive
|
| 56 |
+
if not a:
|
| 57 |
+
continue
|
| 58 |
+
url = a["href"] if a["href"].startswith("http") else BASE + a["href"]
|
| 59 |
+
span = li.find("span", class_="date")
|
| 60 |
+
out.append((url, _norm(a.get_text(" ", strip=True)),
|
| 61 |
+
_norm(span.get_text()) if span else ""))
|
| 62 |
+
return out
|
| 63 |
+
|
| 64 |
+
|
| 65 |
+
def _block_text(heading):
|
| 66 |
+
"""Readable text from a heading up to the next h2/h3 (sections unwrapped)."""
|
| 67 |
+
lines = []
|
| 68 |
+
for sib in heading.find_next_siblings():
|
| 69 |
+
if sib.name in ("h2", "h3"):
|
| 70 |
+
break
|
| 71 |
+
if sib.name in ("ul", "ol"):
|
| 72 |
+
for li in sib.find_all("li", recursive=False):
|
| 73 |
+
item = _norm(li.get_text(" ", strip=True))
|
| 74 |
+
if item:
|
| 75 |
+
lines.append(f"- {item}")
|
| 76 |
+
elif sib.name in _CONTENT_TAGS:
|
| 77 |
+
text = _norm(sib.get_text(" ", strip=True))
|
| 78 |
+
if text:
|
| 79 |
+
lines.append(text)
|
| 80 |
+
return "\n".join(lines)
|
| 81 |
+
|
| 82 |
+
|
| 83 |
+
def parse_directive(html, url, title, date):
|
| 84 |
+
"""Parse one NJC directive page into one chunk per h2/h3 section."""
|
| 85 |
+
soup = BeautifulSoup(html, "html.parser")
|
| 86 |
+
main = soup.find("main")
|
| 87 |
+
if main is None:
|
| 88 |
+
return []
|
| 89 |
+
for tag in main.find_all(["section", "div"]):
|
| 90 |
+
tag.unwrap() # flatten so each heading and its content become siblings
|
| 91 |
+
|
| 92 |
+
code_match = _CODE.search(url)
|
| 93 |
+
code = code_match.group(1) if code_match else url
|
| 94 |
+
chunks = []
|
| 95 |
+
current_part = ""
|
| 96 |
+
for h in main.find_all(["h2", "h3"]):
|
| 97 |
+
text = _norm(h.get_text(" ", strip=True))
|
| 98 |
+
if not text:
|
| 99 |
+
continue
|
| 100 |
+
if h.name == "h2":
|
| 101 |
+
current_part = text
|
| 102 |
+
body = _block_text(h)
|
| 103 |
+
if not body:
|
| 104 |
+
continue
|
| 105 |
+
numbered = _NUMBERED.match(text)
|
| 106 |
+
if numbered:
|
| 107 |
+
number, note = numbered.group(1), numbered.group(2).strip()
|
| 108 |
+
citation = f"{title}, s. {number}"
|
| 109 |
+
else:
|
| 110 |
+
# Un-numbered heading: keep the text in the note only, so the rendered
|
| 111 |
+
# header (citation + note) does not repeat it.
|
| 112 |
+
number, note = "", text
|
| 113 |
+
citation = title
|
| 114 |
+
chunks.append({
|
| 115 |
+
"id": f"directive-{code}-{len(chunks) + 1}",
|
| 116 |
+
"doc_type": "directive",
|
| 117 |
+
"act_code": code,
|
| 118 |
+
"act_short": title,
|
| 119 |
+
"act_name": f"NJC {title}",
|
| 120 |
+
"section": number or text,
|
| 121 |
+
"marginal_note": note,
|
| 122 |
+
"part": current_part if h.name == "h3" else "",
|
| 123 |
+
"division": "",
|
| 124 |
+
"heading": "",
|
| 125 |
+
"text": body,
|
| 126 |
+
"history": "",
|
| 127 |
+
"last_amended": "",
|
| 128 |
+
"current_to": date,
|
| 129 |
+
"citation": citation,
|
| 130 |
+
"source_url": url,
|
| 131 |
+
})
|
| 132 |
+
return chunks
|
| 133 |
+
|
| 134 |
+
|
| 135 |
+
def _print_link(html):
|
| 136 |
+
"""Find a 'Print Full Directive' / 'Print all FSDs' link on a TOC page."""
|
| 137 |
+
soup = BeautifulSoup(html, "html.parser")
|
| 138 |
+
for a in soup.find_all("a", href=True):
|
| 139 |
+
text = _norm(a.get_text(" ", strip=True)).lower()
|
| 140 |
+
if "print full directive" in text or "print all fsd" in text:
|
| 141 |
+
return a["href"] if a["href"].startswith("http") else BASE + a["href"]
|
| 142 |
+
return None
|
| 143 |
+
|
| 144 |
+
|
| 145 |
+
def main():
|
| 146 |
+
force = "--force" in sys.argv
|
| 147 |
+
limit = next((int(a.split("=", 1)[1]) for a in sys.argv[1:]
|
| 148 |
+
if a.startswith("--limit=")), None)
|
| 149 |
+
directives = directive_links(force=force)
|
| 150 |
+
if limit:
|
| 151 |
+
directives = directives[:limit]
|
| 152 |
+
print(f"Ingesting {len(directives)} NJC directives...")
|
| 153 |
+
all_chunks, failures = [], []
|
| 154 |
+
for url, title, date in directives:
|
| 155 |
+
code_match = _CODE.search(url)
|
| 156 |
+
code = code_match.group(1) if code_match else "x"
|
| 157 |
+
try:
|
| 158 |
+
html = _fetch(url, DIRECTIVE_DIR / f"{code}.html", force=force)
|
| 159 |
+
chunks = parse_directive(html, url, title, date)
|
| 160 |
+
if not chunks:
|
| 161 |
+
# Multi-page directive: the landing page is only a table of
|
| 162 |
+
# contents -- follow its "Print Full Directive" link.
|
| 163 |
+
print_url = _print_link(html)
|
| 164 |
+
if print_url:
|
| 165 |
+
full = _fetch(print_url, DIRECTIVE_DIR / f"{code}-full.html",
|
| 166 |
+
force=force)
|
| 167 |
+
chunks = parse_directive(full, url, title, date)
|
| 168 |
+
if chunks:
|
| 169 |
+
all_chunks.extend(chunks)
|
| 170 |
+
print(f" {title}: {len(chunks)} chunks")
|
| 171 |
+
else:
|
| 172 |
+
failures.append((title, "no content parsed"))
|
| 173 |
+
except Exception as exc:
|
| 174 |
+
failures.append((title, f"{type(exc).__name__}: {exc}"))
|
| 175 |
+
PROCESSED_DIR.mkdir(parents=True, exist_ok=True)
|
| 176 |
+
OUT_FILE.write_text(json.dumps(all_chunks, ensure_ascii=False, indent=2),
|
| 177 |
+
encoding="utf-8")
|
| 178 |
+
print(f"\n{len(all_chunks)} chunks from {len(directives) - len(failures)} "
|
| 179 |
+
f"directives -> {OUT_FILE.name}")
|
| 180 |
+
for title, why in failures:
|
| 181 |
+
print(f" FAILED {title}: {why}")
|
| 182 |
+
|
| 183 |
+
|
| 184 |
+
if __name__ == "__main__":
|
| 185 |
+
main()
|
canlex/dmemo.py
ADDED
|
@@ -0,0 +1,243 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""Ingest CBSA D-Memoranda (HTML) into structured, section-level chunks.
|
| 2 |
+
|
| 3 |
+
D-Memoranda are CBSA's administrative guidance on how it applies the Customs Act
|
| 4 |
+
and related law. They are persuasive, not binding -- every chunk is tagged
|
| 5 |
+
doc_type="memorandum" so the rest of CanLex can keep them distinct from statute.
|
| 6 |
+
"""
|
| 7 |
+
import io
|
| 8 |
+
import json
|
| 9 |
+
import re
|
| 10 |
+
import sys
|
| 11 |
+
import time
|
| 12 |
+
import urllib.request
|
| 13 |
+
from urllib.parse import urljoin
|
| 14 |
+
|
| 15 |
+
from bs4 import BeautifulSoup
|
| 16 |
+
from pypdf import PdfReader
|
| 17 |
+
|
| 18 |
+
from .config import RAW_DIR, PROCESSED_DIR
|
| 19 |
+
|
| 20 |
+
INDEX_URL = "https://www.cbsa-asfc.gc.ca/publications/dm-md/d1-d23-eng.html"
|
| 21 |
+
DMEMO_DIR = RAW_DIR / "dmemos"
|
| 22 |
+
OUT_FILE = PROCESSED_DIR / "dmemos.json"
|
| 23 |
+
|
| 24 |
+
# <h2> headings that are page boilerplate rather than memo content.
|
| 25 |
+
_SKIP_HEADINGS = {"contact us", "related links"}
|
| 26 |
+
_MEMO_HREF = re.compile(r"/dm-md/d\d+/d[\d-]+-eng\.html")
|
| 27 |
+
_URL_NUMBER = re.compile(r"/(d\d+-[\d-]+)-eng\.html")
|
| 28 |
+
|
| 29 |
+
|
| 30 |
+
def _norm(text):
|
| 31 |
+
return re.sub(r"\s+", " ", text or "").strip()
|
| 32 |
+
|
| 33 |
+
|
| 34 |
+
def _fetch(url, dest, force=False):
|
| 35 |
+
if dest.exists() and not force:
|
| 36 |
+
return dest.read_bytes()
|
| 37 |
+
req = urllib.request.Request(url, headers={"User-Agent": "CanLex/0.1"})
|
| 38 |
+
with urllib.request.urlopen(req, timeout=60) as resp:
|
| 39 |
+
data = resp.read()
|
| 40 |
+
dest.parent.mkdir(parents=True, exist_ok=True)
|
| 41 |
+
dest.write_bytes(data)
|
| 42 |
+
time.sleep(0.5) # be polite to the CBSA server
|
| 43 |
+
return data
|
| 44 |
+
|
| 45 |
+
|
| 46 |
+
def memo_urls(force=False):
|
| 47 |
+
"""All individual D-memo URLs listed on the CBSA index page."""
|
| 48 |
+
html = _fetch(INDEX_URL, DMEMO_DIR / "_index.html", force=force)
|
| 49 |
+
soup = BeautifulSoup(html, "html.parser")
|
| 50 |
+
urls, seen = [], set()
|
| 51 |
+
for a in soup.find_all("a", href=True):
|
| 52 |
+
if _MEMO_HREF.search(a["href"]):
|
| 53 |
+
full = urljoin(INDEX_URL, a["href"])
|
| 54 |
+
if full not in seen:
|
| 55 |
+
seen.add(full)
|
| 56 |
+
urls.append(full)
|
| 57 |
+
return urls
|
| 58 |
+
|
| 59 |
+
|
| 60 |
+
def _render_section(h2):
|
| 61 |
+
"""Readable text from an <h2> up to the next <h2> (sections already unwrapped)."""
|
| 62 |
+
lines = []
|
| 63 |
+
for sib in h2.find_next_siblings():
|
| 64 |
+
if sib.name == "h2" or sib.get("id") == "wb-dtmd":
|
| 65 |
+
break
|
| 66 |
+
if sib.name in ("ul", "ol"):
|
| 67 |
+
for li in sib.find_all("li", recursive=False):
|
| 68 |
+
item = _norm(li.get_text(" ", strip=True))
|
| 69 |
+
if item:
|
| 70 |
+
lines.append(f"- {item}")
|
| 71 |
+
else:
|
| 72 |
+
text = _norm(sib.get_text(" ", strip=True))
|
| 73 |
+
if text:
|
| 74 |
+
lines.append(text)
|
| 75 |
+
return "\n".join(lines)
|
| 76 |
+
|
| 77 |
+
|
| 78 |
+
def parse_memo(html, url):
|
| 79 |
+
"""Parse one D-memo HTML page into one chunk per <h2> content section."""
|
| 80 |
+
soup = BeautifulSoup(html, "html.parser")
|
| 81 |
+
main = soup.find("main")
|
| 82 |
+
if main is None:
|
| 83 |
+
return []
|
| 84 |
+
for section in main.find_all("section"):
|
| 85 |
+
section.unwrap() # flatten so each <h2> and its content become siblings
|
| 86 |
+
|
| 87 |
+
match = _URL_NUMBER.search(url)
|
| 88 |
+
number = match.group(1).upper() if match else url
|
| 89 |
+
h1 = main.find("h1")
|
| 90 |
+
topic = ""
|
| 91 |
+
if h1 and h1.find("small"):
|
| 92 |
+
topic = _norm(h1.find("small").get_text(" ", strip=True))
|
| 93 |
+
dm = main.find("time", attrs={"property": "dateModified"})
|
| 94 |
+
date = _norm(dm.get("datetime") or dm.get_text()) if dm else ""
|
| 95 |
+
|
| 96 |
+
chunks = []
|
| 97 |
+
for h2 in main.find_all("h2"):
|
| 98 |
+
heading = _norm(h2.get_text(" ", strip=True))
|
| 99 |
+
if not heading or heading.lower() in _SKIP_HEADINGS:
|
| 100 |
+
continue
|
| 101 |
+
body = _render_section(h2)
|
| 102 |
+
if not body:
|
| 103 |
+
continue
|
| 104 |
+
chunks.append({
|
| 105 |
+
"id": f"dmemo-{number}-{len(chunks) + 1}",
|
| 106 |
+
"doc_type": "memorandum",
|
| 107 |
+
"act_code": "D-Memo",
|
| 108 |
+
"act_short": "D-Memo",
|
| 109 |
+
"act_name": "CBSA D-Memoranda",
|
| 110 |
+
"section": number,
|
| 111 |
+
"marginal_note": heading,
|
| 112 |
+
"part": topic,
|
| 113 |
+
"division": "",
|
| 114 |
+
"heading": "",
|
| 115 |
+
"text": body,
|
| 116 |
+
"history": "",
|
| 117 |
+
"last_amended": date,
|
| 118 |
+
"current_to": date,
|
| 119 |
+
"citation": f"Memorandum {number}",
|
| 120 |
+
"source_url": url,
|
| 121 |
+
})
|
| 122 |
+
return chunks
|
| 123 |
+
|
| 124 |
+
|
| 125 |
+
def _pdf_clean(text):
|
| 126 |
+
text = re.sub(r"[ \t]+", " ", text)
|
| 127 |
+
text = re.sub(r"\n[ \t]+", "\n", text)
|
| 128 |
+
return re.sub(r"\n{3,}", "\n\n", text).strip()
|
| 129 |
+
|
| 130 |
+
|
| 131 |
+
def _pdf_text(pdf_bytes):
|
| 132 |
+
try:
|
| 133 |
+
reader = PdfReader(io.BytesIO(pdf_bytes))
|
| 134 |
+
return _pdf_clean("\n".join((p.extract_text() or "") for p in reader.pages))
|
| 135 |
+
except Exception:
|
| 136 |
+
return ""
|
| 137 |
+
|
| 138 |
+
|
| 139 |
+
def _split(text, target=3000):
|
| 140 |
+
"""Split long PDF text into ~target-sized pieces at line boundaries."""
|
| 141 |
+
if len(text) <= target:
|
| 142 |
+
return [text]
|
| 143 |
+
parts, buf, size = [], [], 0
|
| 144 |
+
for line in text.split("\n"):
|
| 145 |
+
if size + len(line) > target and buf:
|
| 146 |
+
parts.append("\n".join(buf))
|
| 147 |
+
buf, size = [], 0
|
| 148 |
+
buf.append(line)
|
| 149 |
+
size += len(line) + 1
|
| 150 |
+
if buf:
|
| 151 |
+
parts.append("\n".join(buf))
|
| 152 |
+
return parts
|
| 153 |
+
|
| 154 |
+
|
| 155 |
+
def parse_pdf_memo(html, url):
|
| 156 |
+
"""Fallback for memos whose HTML page is only a stub linking to a PDF."""
|
| 157 |
+
soup = BeautifulSoup(html, "html.parser")
|
| 158 |
+
main = soup.find("main")
|
| 159 |
+
if main is None:
|
| 160 |
+
return []
|
| 161 |
+
pdf_href = next((a["href"] for a in main.find_all("a", href=True)
|
| 162 |
+
if a["href"].lower().endswith(".pdf")), None)
|
| 163 |
+
if not pdf_href:
|
| 164 |
+
return []
|
| 165 |
+
pdf_url = urljoin(url, pdf_href)
|
| 166 |
+
|
| 167 |
+
match = _URL_NUMBER.search(url)
|
| 168 |
+
number = match.group(1).upper() if match else url
|
| 169 |
+
h1 = main.find("h1")
|
| 170 |
+
topic = _norm(h1.get_text(" ", strip=True)) if h1 else ""
|
| 171 |
+
topic = re.sub(r"^Memorandum\s+D[\w-]+\s*[:–-]\s*", "", topic, flags=re.I)
|
| 172 |
+
dm = main.find("time", attrs={"property": "dateModified"})
|
| 173 |
+
date = _norm(dm.get("datetime") or dm.get_text()) if dm else ""
|
| 174 |
+
|
| 175 |
+
pdf_bytes = _fetch(pdf_url, DMEMO_DIR / "pdf" / pdf_url.rsplit("/", 1)[-1])
|
| 176 |
+
text = _pdf_text(pdf_bytes)
|
| 177 |
+
if not text:
|
| 178 |
+
return []
|
| 179 |
+
|
| 180 |
+
parts = _split(text)
|
| 181 |
+
chunks = []
|
| 182 |
+
for i, part in enumerate(parts, 1):
|
| 183 |
+
label = topic or number
|
| 184 |
+
if len(parts) > 1:
|
| 185 |
+
label = f"{label} (part {i})"
|
| 186 |
+
chunks.append({
|
| 187 |
+
"id": f"dmemo-{number}-pdf{i}",
|
| 188 |
+
"doc_type": "memorandum",
|
| 189 |
+
"act_code": "D-Memo",
|
| 190 |
+
"act_short": "D-Memo",
|
| 191 |
+
"act_name": "CBSA D-Memoranda",
|
| 192 |
+
"section": number,
|
| 193 |
+
"marginal_note": label,
|
| 194 |
+
"part": "",
|
| 195 |
+
"division": "",
|
| 196 |
+
"heading": "",
|
| 197 |
+
"text": part,
|
| 198 |
+
"history": "",
|
| 199 |
+
"last_amended": date,
|
| 200 |
+
"current_to": date,
|
| 201 |
+
"citation": f"Memorandum {number}",
|
| 202 |
+
"source_url": url,
|
| 203 |
+
})
|
| 204 |
+
return chunks
|
| 205 |
+
|
| 206 |
+
|
| 207 |
+
def ingest(force=False, limit=None):
|
| 208 |
+
urls = memo_urls(force=force)
|
| 209 |
+
if limit:
|
| 210 |
+
urls = urls[:limit]
|
| 211 |
+
print(f"Ingesting {len(urls)} D-Memoranda...")
|
| 212 |
+
all_chunks, failures = [], []
|
| 213 |
+
for i, url in enumerate(urls, 1):
|
| 214 |
+
try:
|
| 215 |
+
html = _fetch(url, DMEMO_DIR / url.rsplit("/", 1)[-1], force=force)
|
| 216 |
+
chunks = parse_memo(html, url) or parse_pdf_memo(html, url)
|
| 217 |
+
if chunks:
|
| 218 |
+
all_chunks.extend(chunks)
|
| 219 |
+
else:
|
| 220 |
+
failures.append((url, "no content parsed"))
|
| 221 |
+
except Exception as exc:
|
| 222 |
+
failures.append((url, f"{type(exc).__name__}: {exc}"))
|
| 223 |
+
if i % 50 == 0:
|
| 224 |
+
print(f" {i}/{len(urls)} ...")
|
| 225 |
+
PROCESSED_DIR.mkdir(parents=True, exist_ok=True)
|
| 226 |
+
OUT_FILE.write_text(json.dumps(all_chunks, ensure_ascii=False, indent=2), encoding="utf-8")
|
| 227 |
+
print(f" {len(all_chunks)} section-chunks from {len(urls) - len(failures)} memos "
|
| 228 |
+
f"-> {OUT_FILE.name}")
|
| 229 |
+
if failures:
|
| 230 |
+
print(f" {len(failures)} memos with no content / errors:")
|
| 231 |
+
for url, why in failures[:15]:
|
| 232 |
+
print(f" - {url.rsplit('/', 1)[-1]}: {why}")
|
| 233 |
+
|
| 234 |
+
|
| 235 |
+
def main():
|
| 236 |
+
force = "--force" in sys.argv
|
| 237 |
+
limit = next((int(a.split("=", 1)[1]) for a in sys.argv[1:]
|
| 238 |
+
if a.startswith("--limit=")), None)
|
| 239 |
+
ingest(force=force, limit=limit)
|
| 240 |
+
|
| 241 |
+
|
| 242 |
+
if __name__ == "__main__":
|
| 243 |
+
main()
|
canlex/embed.py
ADDED
|
@@ -0,0 +1,59 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""Build semantic embeddings for ingested legislation chunks (local, key-free)."""
|
| 2 |
+
import json
|
| 3 |
+
|
| 4 |
+
import numpy as np
|
| 5 |
+
|
| 6 |
+
from .config import PROCESSED_DIR
|
| 7 |
+
|
| 8 |
+
MODEL_NAME = "minishlab/potion-retrieval-32M"
|
| 9 |
+
EMB_PATH = PROCESSED_DIR / "embeddings.npz"
|
| 10 |
+
_MAX_BODY = 2000 # cap embedded body text so long sections stay topically focused
|
| 11 |
+
|
| 12 |
+
|
| 13 |
+
def load_chunks():
|
| 14 |
+
chunks = []
|
| 15 |
+
for path in sorted(PROCESSED_DIR.glob("*.json")):
|
| 16 |
+
chunks.extend(json.loads(path.read_text(encoding="utf-8")))
|
| 17 |
+
return chunks
|
| 18 |
+
|
| 19 |
+
|
| 20 |
+
def embed_text(chunk):
|
| 21 |
+
"""Compact, retrieval-focused representation of one section."""
|
| 22 |
+
note = chunk["marginal_note"]
|
| 23 |
+
body = chunk["text"][:_MAX_BODY]
|
| 24 |
+
# The marginal note (section title) is the strongest topical signal, so it
|
| 25 |
+
# is repeated to weight it up in the mean-pooled static embedding.
|
| 26 |
+
parts = [chunk["act_short"], note, note, chunk["heading"], body]
|
| 27 |
+
return " . ".join(p for p in parts if p)
|
| 28 |
+
|
| 29 |
+
|
| 30 |
+
class Embedder:
|
| 31 |
+
"""Local static-embedding model (model2vec): no API key, runs offline once cached."""
|
| 32 |
+
|
| 33 |
+
def __init__(self, model_name=MODEL_NAME):
|
| 34 |
+
from model2vec import StaticModel
|
| 35 |
+
self.model = StaticModel.from_pretrained(model_name)
|
| 36 |
+
|
| 37 |
+
def encode(self, texts):
|
| 38 |
+
"""Return L2-normalized float32 vectors, one row per input text."""
|
| 39 |
+
vecs = np.asarray(self.model.encode(list(texts)), dtype=np.float32)
|
| 40 |
+
if vecs.ndim == 1:
|
| 41 |
+
vecs = vecs.reshape(1, -1)
|
| 42 |
+
norms = np.linalg.norm(vecs, axis=1, keepdims=True)
|
| 43 |
+
return vecs / np.maximum(norms, 1e-9)
|
| 44 |
+
|
| 45 |
+
|
| 46 |
+
def build():
|
| 47 |
+
chunks = load_chunks()
|
| 48 |
+
if not chunks:
|
| 49 |
+
print(f"No processed legislation in {PROCESSED_DIR}. Run 'canlex.ingest' first.")
|
| 50 |
+
return
|
| 51 |
+
print(f"Embedding {len(chunks)} sections with {MODEL_NAME} ...")
|
| 52 |
+
vectors = Embedder().encode([embed_text(c) for c in chunks])
|
| 53 |
+
ids = np.array([c["id"] for c in chunks])
|
| 54 |
+
np.savez(EMB_PATH, ids=ids, vectors=vectors)
|
| 55 |
+
print(f" {vectors.shape[0]} vectors, dim {vectors.shape[1]} -> {EMB_PATH.name}")
|
| 56 |
+
|
| 57 |
+
|
| 58 |
+
if __name__ == "__main__":
|
| 59 |
+
build()
|
canlex/index.py
ADDED
|
@@ -0,0 +1,207 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""Hybrid retrieval (BM25 + semantic) with cross-encoder reranking."""
|
| 2 |
+
import json
|
| 3 |
+
import math
|
| 4 |
+
import re
|
| 5 |
+
import sys
|
| 6 |
+
from collections import Counter, defaultdict
|
| 7 |
+
|
| 8 |
+
from .config import PROCESSED_DIR
|
| 9 |
+
|
| 10 |
+
K1 = 1.5
|
| 11 |
+
B = 0.75
|
| 12 |
+
RRF_K = 60 # reciprocal-rank-fusion damping constant
|
| 13 |
+
CANDIDATES = 80 # hits each retriever contributes to the fusion
|
| 14 |
+
RERANK_POOL = 50 # top fused candidates the cross-encoder rescores
|
| 15 |
+
|
| 16 |
+
_TOKEN = re.compile(r"[a-z0-9]+")
|
| 17 |
+
_SECTION_REF = re.compile(r"\bs(?:ec(?:tion)?)?s?\.?\s*(\d+(?:\.\d+)?)")
|
| 18 |
+
|
| 19 |
+
|
| 20 |
+
def tokenize(text):
|
| 21 |
+
return _TOKEN.findall(text.lower())
|
| 22 |
+
|
| 23 |
+
|
| 24 |
+
def _section_refs(query):
|
| 25 |
+
"""Pull explicit section numbers from a query, e.g. 'section 34', 's. 20.1'."""
|
| 26 |
+
return set(_SECTION_REF.findall(query.lower()))
|
| 27 |
+
|
| 28 |
+
|
| 29 |
+
class LegislationIndex:
|
| 30 |
+
def __init__(self):
|
| 31 |
+
self.chunks = []
|
| 32 |
+
for path in sorted(PROCESSED_DIR.glob("*.json")):
|
| 33 |
+
self.chunks.extend(json.loads(path.read_text(encoding="utf-8")))
|
| 34 |
+
if not self.chunks:
|
| 35 |
+
raise RuntimeError(
|
| 36 |
+
f"No processed legislation in {PROCESSED_DIR}. Run 'canlex.ingest' first.")
|
| 37 |
+
self._build_bm25()
|
| 38 |
+
self._load_semantic()
|
| 39 |
+
self._load_reranker()
|
| 40 |
+
|
| 41 |
+
def _build_bm25(self):
|
| 42 |
+
self.doc_len = []
|
| 43 |
+
self.postings = defaultdict(list) # term -> [(doc_idx, term_frequency), ...]
|
| 44 |
+
df = defaultdict(int)
|
| 45 |
+
for idx, c in enumerate(self.chunks):
|
| 46 |
+
# The marginal note (title) is repeated to weight it above body text;
|
| 47 |
+
# act_code and section are indexed so codes/numbers are searchable too.
|
| 48 |
+
blob = " ".join((c["marginal_note"], c["marginal_note"], c["heading"],
|
| 49 |
+
c["part"], c["division"], c["act_code"], c["section"],
|
| 50 |
+
c["text"]))
|
| 51 |
+
counts = Counter(tokenize(blob))
|
| 52 |
+
self.doc_len.append(sum(counts.values()))
|
| 53 |
+
for term, tf in counts.items():
|
| 54 |
+
self.postings[term].append((idx, tf))
|
| 55 |
+
df[term] += 1
|
| 56 |
+
n = len(self.chunks)
|
| 57 |
+
self.avgdl = sum(self.doc_len) / n
|
| 58 |
+
self.idf = {t: math.log(1 + (n - d + 0.5) / (d + 0.5)) for t, d in df.items()}
|
| 59 |
+
|
| 60 |
+
def _load_semantic(self):
|
| 61 |
+
"""Load precomputed embeddings and the query embedder.
|
| 62 |
+
|
| 63 |
+
Any failure (missing embeddings, or numpy/model unavailable) degrades the
|
| 64 |
+
index to BM25-only rather than breaking retrieval.
|
| 65 |
+
"""
|
| 66 |
+
self.semantic = False
|
| 67 |
+
emb_path = PROCESSED_DIR / "embeddings.npz"
|
| 68 |
+
if not emb_path.exists():
|
| 69 |
+
print("CanLex index: no embeddings.npz; using BM25 only "
|
| 70 |
+
"(run 'canlex.embed' to enable semantic search).", file=sys.stderr)
|
| 71 |
+
return
|
| 72 |
+
try:
|
| 73 |
+
import numpy as np
|
| 74 |
+
from .embed import Embedder
|
| 75 |
+
with np.load(emb_path) as data:
|
| 76 |
+
id_to_vec = dict(zip(data["ids"].tolist(), data["vectors"]))
|
| 77 |
+
dim = int(data["vectors"].shape[1])
|
| 78 |
+
missing = 0
|
| 79 |
+
rows = []
|
| 80 |
+
for c in self.chunks:
|
| 81 |
+
vec = id_to_vec.get(c["id"])
|
| 82 |
+
if vec is None:
|
| 83 |
+
missing += 1
|
| 84 |
+
rows.append(np.zeros(dim, dtype=np.float32))
|
| 85 |
+
else:
|
| 86 |
+
rows.append(vec)
|
| 87 |
+
self._np = np
|
| 88 |
+
self.vectors = np.vstack(rows)
|
| 89 |
+
self.embedder = Embedder()
|
| 90 |
+
self.semantic = True
|
| 91 |
+
if missing:
|
| 92 |
+
print(f"CanLex index: {missing}/{len(self.chunks)} sections lack "
|
| 93 |
+
f"embeddings; re-run 'canlex.embed' to refresh.", file=sys.stderr)
|
| 94 |
+
except Exception as exc:
|
| 95 |
+
print(f"CanLex index: semantic search disabled ({type(exc).__name__}: "
|
| 96 |
+
f"{exc}); using BM25 only.", file=sys.stderr)
|
| 97 |
+
self.semantic = False
|
| 98 |
+
|
| 99 |
+
def _load_reranker(self):
|
| 100 |
+
"""Load the cross-encoder reranker; degrade to the fusion order on failure."""
|
| 101 |
+
self.reranker = None
|
| 102 |
+
try:
|
| 103 |
+
from .rerank import Reranker
|
| 104 |
+
self.reranker = Reranker()
|
| 105 |
+
except Exception as exc:
|
| 106 |
+
print(f"CanLex index: reranker disabled ({type(exc).__name__}: {exc}); "
|
| 107 |
+
f"using hybrid fusion order.", file=sys.stderr)
|
| 108 |
+
|
| 109 |
+
def _bm25_scores(self, query):
|
| 110 |
+
scores = defaultdict(float)
|
| 111 |
+
for term in set(tokenize(query)):
|
| 112 |
+
idf = self.idf.get(term)
|
| 113 |
+
if idf is None:
|
| 114 |
+
continue
|
| 115 |
+
for idx, tf in self.postings[term]:
|
| 116 |
+
dl = self.doc_len[idx]
|
| 117 |
+
denom = tf + K1 * (1 - B + B * dl / self.avgdl)
|
| 118 |
+
scores[idx] += idf * tf * (K1 + 1) / denom
|
| 119 |
+
return scores
|
| 120 |
+
|
| 121 |
+
def _semantic_ranking(self, query):
|
| 122 |
+
qv = self.embedder.encode([query])[0]
|
| 123 |
+
sims = self.vectors @ qv
|
| 124 |
+
order = self._np.argsort(sims)[::-1][:CANDIDATES]
|
| 125 |
+
return [int(i) for i in order]
|
| 126 |
+
|
| 127 |
+
def _rerank_doc(self, idx):
|
| 128 |
+
c = self.chunks[idx]
|
| 129 |
+
return f"{c['citation']} — {c['marginal_note']}\n{c['text']}"
|
| 130 |
+
|
| 131 |
+
def search(self, query, top_k=6, act=None, doc_type=None):
|
| 132 |
+
"""Hybrid candidate fusion (BM25 + semantic), then cross-encoder rerank."""
|
| 133 |
+
fused = defaultdict(float)
|
| 134 |
+
bm25 = self._bm25_scores(query)
|
| 135 |
+
for rank, idx in enumerate(sorted(bm25, key=bm25.get, reverse=True)[:CANDIDATES]):
|
| 136 |
+
fused[idx] += 1.0 / (RRF_K + rank)
|
| 137 |
+
if self.semantic:
|
| 138 |
+
for rank, idx in enumerate(self._semantic_ranking(query)):
|
| 139 |
+
fused[idx] += 1.0 / (RRF_K + rank)
|
| 140 |
+
|
| 141 |
+
# Ensure explicitly-referenced sections are retrieved even if recall missed them.
|
| 142 |
+
refs = _section_refs(query)
|
| 143 |
+
if refs:
|
| 144 |
+
for idx, c in enumerate(self.chunks):
|
| 145 |
+
if c["section"] in refs and idx not in fused:
|
| 146 |
+
fused[idx] = 0.0
|
| 147 |
+
|
| 148 |
+
def allowed(idx):
|
| 149 |
+
c = self.chunks[idx]
|
| 150 |
+
if act and act.lower() not in (c["act_short"].lower(), c["act_code"].lower()):
|
| 151 |
+
return False
|
| 152 |
+
if doc_type and c.get("doc_type", "legislation") != doc_type:
|
| 153 |
+
return False
|
| 154 |
+
return True
|
| 155 |
+
|
| 156 |
+
candidates = [i for i in sorted(fused, key=fused.get, reverse=True) if allowed(i)]
|
| 157 |
+
if not candidates:
|
| 158 |
+
return []
|
| 159 |
+
scores = {i: fused[i] for i in candidates}
|
| 160 |
+
|
| 161 |
+
# Precision stage: the cross-encoder rescores the top candidate pool.
|
| 162 |
+
if self.reranker:
|
| 163 |
+
pool = candidates[:RERANK_POOL]
|
| 164 |
+
for idx, ce in zip(pool, self.reranker.score(
|
| 165 |
+
query, [self._rerank_doc(i) for i in pool])):
|
| 166 |
+
scores[idx] = ce
|
| 167 |
+
pool.sort(key=lambda i: scores[i], reverse=True)
|
| 168 |
+
candidates = pool + candidates[RERANK_POOL:]
|
| 169 |
+
|
| 170 |
+
# Explicit section references are pinned to the very top.
|
| 171 |
+
if refs:
|
| 172 |
+
pinned = [i for i in candidates if self.chunks[i]["section"] in refs]
|
| 173 |
+
if pinned:
|
| 174 |
+
pinned_set = set(pinned)
|
| 175 |
+
candidates = pinned + [i for i in candidates if i not in pinned_set]
|
| 176 |
+
|
| 177 |
+
return [{**self.chunks[i], "score": round(scores[i], 4)} for i in candidates[:top_k]]
|
| 178 |
+
|
| 179 |
+
def get_section(self, act, section):
|
| 180 |
+
act = act.lower()
|
| 181 |
+
for c in self.chunks:
|
| 182 |
+
if c["section"] == section and act in (c["act_short"].lower(), c["act_code"].lower()):
|
| 183 |
+
return c
|
| 184 |
+
return None
|
| 185 |
+
|
| 186 |
+
|
| 187 |
+
def main():
|
| 188 |
+
if len(sys.argv) < 2:
|
| 189 |
+
print('usage: python -m canlex.index "your query"')
|
| 190 |
+
return
|
| 191 |
+
query = " ".join(sys.argv[1:])
|
| 192 |
+
index = LegislationIndex()
|
| 193 |
+
if index.reranker:
|
| 194 |
+
mode = "hybrid + cross-encoder rerank"
|
| 195 |
+
elif index.semantic:
|
| 196 |
+
mode = "hybrid (BM25 + semantic)"
|
| 197 |
+
else:
|
| 198 |
+
mode = "BM25 only"
|
| 199 |
+
print(f"{len(index.chunks)} sections indexed - {mode}. Query: {query!r}\n")
|
| 200 |
+
for r in index.search(query):
|
| 201 |
+
print(f"[{r['score']:.3f}] {r['citation']} - {r['marginal_note']}")
|
| 202 |
+
print(f" {r['text'].replace(chr(10), ' ')[:160]}")
|
| 203 |
+
print()
|
| 204 |
+
|
| 205 |
+
|
| 206 |
+
if __name__ == "__main__":
|
| 207 |
+
main()
|
canlex/ingest.py
ADDED
|
@@ -0,0 +1,186 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""Ingest Justice Laws XML into structured, section-level JSON chunks."""
|
| 2 |
+
import json
|
| 3 |
+
import re
|
| 4 |
+
import sys
|
| 5 |
+
import time
|
| 6 |
+
import urllib.request
|
| 7 |
+
import xml.etree.ElementTree as ET
|
| 8 |
+
|
| 9 |
+
from .config import SOURCES, RAW_DIR, PROCESSED_DIR
|
| 10 |
+
|
| 11 |
+
LIMS = "{http://justice.gc.ca/lims}"
|
| 12 |
+
BLOCK_TAGS = {"Subsection", "Paragraph", "Subparagraph", "Clause", "Definition"}
|
| 13 |
+
|
| 14 |
+
|
| 15 |
+
def _norm(text):
|
| 16 |
+
"""Collapse all whitespace, including en-spaces and NBSP, to single spaces."""
|
| 17 |
+
return re.sub(r"\s+", " ", text or "").strip()
|
| 18 |
+
|
| 19 |
+
|
| 20 |
+
def _itertext(el):
|
| 21 |
+
return _norm("".join(el.itertext()))
|
| 22 |
+
|
| 23 |
+
|
| 24 |
+
def fetch_xml(code, force=False):
|
| 25 |
+
src = SOURCES[code]
|
| 26 |
+
RAW_DIR.mkdir(parents=True, exist_ok=True)
|
| 27 |
+
dest = RAW_DIR / f"{code}.xml"
|
| 28 |
+
if dest.exists() and not force:
|
| 29 |
+
return dest
|
| 30 |
+
print(f" downloading {src['xml_url']}")
|
| 31 |
+
req = urllib.request.Request(src["xml_url"], headers={"User-Agent": "CanLex/0.1"})
|
| 32 |
+
with urllib.request.urlopen(req, timeout=120) as resp:
|
| 33 |
+
dest.write_bytes(resp.read())
|
| 34 |
+
time.sleep(1.0) # be polite to the Justice Laws server between downloads
|
| 35 |
+
return dest
|
| 36 |
+
|
| 37 |
+
|
| 38 |
+
def _heading_text(h):
|
| 39 |
+
"""Render a <Heading> as 'LABEL - TITLE' when both parts are present."""
|
| 40 |
+
label, title = h.find("Label"), h.find("TitleText")
|
| 41 |
+
if label is not None or title is not None:
|
| 42 |
+
parts = [_itertext(e) for e in (label, title) if e is not None]
|
| 43 |
+
return " - ".join(p for p in parts if p)
|
| 44 |
+
return _itertext(h)
|
| 45 |
+
|
| 46 |
+
|
| 47 |
+
def _render_block(el, is_section=False):
|
| 48 |
+
"""Recursively render a provision element into readable, structured text."""
|
| 49 |
+
label = note = ""
|
| 50 |
+
inline, blocks = [], []
|
| 51 |
+
for child in el:
|
| 52 |
+
tag = child.tag
|
| 53 |
+
if tag == "Label":
|
| 54 |
+
label = _itertext(child)
|
| 55 |
+
elif tag == "MarginalNote":
|
| 56 |
+
if not is_section: # a section's own marginal note is its title
|
| 57 |
+
note = _itertext(child)
|
| 58 |
+
elif tag == "Text":
|
| 59 |
+
inline.append(_itertext(child))
|
| 60 |
+
elif tag == "HistoricalNote":
|
| 61 |
+
continue
|
| 62 |
+
elif tag in BLOCK_TAGS:
|
| 63 |
+
blocks.append(_render_block(child))
|
| 64 |
+
else:
|
| 65 |
+
nested = _render_block(child)
|
| 66 |
+
if nested:
|
| 67 |
+
blocks.append(nested)
|
| 68 |
+
head = " ".join(p for p in (label, f"[{note}]" if note else "", " ".join(inline)) if p)
|
| 69 |
+
if blocks:
|
| 70 |
+
return (head + "\n" if head else "") + "\n".join(b for b in blocks if b)
|
| 71 |
+
return head
|
| 72 |
+
|
| 73 |
+
|
| 74 |
+
def _history(section):
|
| 75 |
+
note = section.find("HistoricalNote")
|
| 76 |
+
if note is None:
|
| 77 |
+
return ""
|
| 78 |
+
return "; ".join(_itertext(i) for i in note.iter("HistoricalNoteSubItem"))
|
| 79 |
+
|
| 80 |
+
|
| 81 |
+
def parse_legislation(xml_path, code):
|
| 82 |
+
src = SOURCES[code]
|
| 83 |
+
data = xml_path.read_bytes()
|
| 84 |
+
if data[:3] == b"\xef\xbb\xbf": # some Justice Laws XML files carry a UTF-8 BOM
|
| 85 |
+
data = data[3:]
|
| 86 |
+
root = ET.fromstring(data)
|
| 87 |
+
current_to = root.get(f"{LIMS}current-date", "")
|
| 88 |
+
body = root.find("Body")
|
| 89 |
+
if body is None:
|
| 90 |
+
raise ValueError(f"{code}: no <Body> element (root <{root.tag}>)")
|
| 91 |
+
|
| 92 |
+
headings, chunks = {}, []
|
| 93 |
+
for el in body:
|
| 94 |
+
if el.tag == "Heading":
|
| 95 |
+
try:
|
| 96 |
+
level = int(el.get("level", "0"))
|
| 97 |
+
except ValueError:
|
| 98 |
+
level = 0
|
| 99 |
+
headings = {k: v for k, v in headings.items() if k < level}
|
| 100 |
+
headings[level] = _heading_text(el)
|
| 101 |
+
continue
|
| 102 |
+
if el.tag != "Section":
|
| 103 |
+
continue
|
| 104 |
+
|
| 105 |
+
label_el = el.find("Label")
|
| 106 |
+
number = _itertext(label_el) if label_el is not None else ""
|
| 107 |
+
note_el = el.find("MarginalNote")
|
| 108 |
+
marginal = _itertext(note_el) if note_el is not None else ""
|
| 109 |
+
body_text = _render_block(el, is_section=True)
|
| 110 |
+
|
| 111 |
+
if number:
|
| 112 |
+
chunk_id = f"{code}-s{number}"
|
| 113 |
+
citation = f"{src['short']}, s. {number}"
|
| 114 |
+
source_url = f"{src['web_base']}section-{number}.html"
|
| 115 |
+
else:
|
| 116 |
+
# An unnumbered <Section> is a preamble or enacting recital. Keep it
|
| 117 |
+
# unless it has no text; the LIMS id keeps the chunk id unique when
|
| 118 |
+
# an Act contains more than one such block.
|
| 119 |
+
if not body_text:
|
| 120 |
+
continue
|
| 121 |
+
number = marginal or "Preamble"
|
| 122 |
+
marginal = marginal or "Preamble"
|
| 123 |
+
lims_id = el.get(f"{LIMS}id") or str(len(chunks))
|
| 124 |
+
chunk_id = f"{code}-pre-{lims_id}"
|
| 125 |
+
citation = f"{src['short']}, {number}"
|
| 126 |
+
source_url = src["web_base"]
|
| 127 |
+
|
| 128 |
+
part = next((v for _, v in sorted(headings.items())
|
| 129 |
+
if v.upper().startswith("PART")), "")
|
| 130 |
+
division = next((v for _, v in sorted(headings.items())
|
| 131 |
+
if v.upper().startswith("DIVISION")), "")
|
| 132 |
+
nearest = headings[max(headings)] if headings else ""
|
| 133 |
+
|
| 134 |
+
chunks.append({
|
| 135 |
+
"id": chunk_id,
|
| 136 |
+
"act_code": code,
|
| 137 |
+
"act_short": src["short"],
|
| 138 |
+
"act_name": src["name"],
|
| 139 |
+
"section": number,
|
| 140 |
+
"marginal_note": marginal,
|
| 141 |
+
"part": part,
|
| 142 |
+
"division": division,
|
| 143 |
+
"heading": nearest,
|
| 144 |
+
"text": body_text,
|
| 145 |
+
"history": _history(el),
|
| 146 |
+
"last_amended": el.get(f"{LIMS}lastAmendedDate", ""),
|
| 147 |
+
"current_to": current_to,
|
| 148 |
+
"citation": citation,
|
| 149 |
+
"source_url": source_url,
|
| 150 |
+
})
|
| 151 |
+
|
| 152 |
+
return chunks
|
| 153 |
+
|
| 154 |
+
|
| 155 |
+
def ingest(code, force=False):
|
| 156 |
+
print(f"Ingesting {code} ({SOURCES[code]['short']})...")
|
| 157 |
+
xml_path = fetch_xml(code, force=force)
|
| 158 |
+
chunks = parse_legislation(xml_path, code)
|
| 159 |
+
PROCESSED_DIR.mkdir(parents=True, exist_ok=True)
|
| 160 |
+
out = PROCESSED_DIR / f"{code}.json"
|
| 161 |
+
out.write_text(json.dumps(chunks, ensure_ascii=False, indent=2), encoding="utf-8")
|
| 162 |
+
print(f" {len(chunks)} sections -> {out.name}")
|
| 163 |
+
return chunks
|
| 164 |
+
|
| 165 |
+
|
| 166 |
+
def main():
|
| 167 |
+
force = "--force" in sys.argv
|
| 168 |
+
only = [a for a in sys.argv[1:] if not a.startswith("-")]
|
| 169 |
+
codes = only or list(SOURCES)
|
| 170 |
+
failures = []
|
| 171 |
+
for code in codes:
|
| 172 |
+
if code not in SOURCES:
|
| 173 |
+
print(f" SKIP {code}: not a known source")
|
| 174 |
+
continue
|
| 175 |
+
try:
|
| 176 |
+
ingest(code, force=force)
|
| 177 |
+
except Exception as exc:
|
| 178 |
+
failures.append((code, exc))
|
| 179 |
+
print(f" FAILED {code}: {type(exc).__name__}: {exc}")
|
| 180 |
+
print(f"\nDone: {len(codes) - len(failures)}/{len(codes)} ingested.")
|
| 181 |
+
for code, exc in failures:
|
| 182 |
+
print(f" FAILED {code}: {exc}")
|
| 183 |
+
|
| 184 |
+
|
| 185 |
+
if __name__ == "__main__":
|
| 186 |
+
main()
|
canlex/rerank.py
ADDED
|
@@ -0,0 +1,87 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""Cross-encoder reranker over ONNX Runtime (local, key-free)."""
|
| 2 |
+
import json
|
| 3 |
+
|
| 4 |
+
import numpy as np
|
| 5 |
+
import onnxruntime as ort
|
| 6 |
+
from huggingface_hub import hf_hub_download
|
| 7 |
+
from tokenizers import Tokenizer
|
| 8 |
+
|
| 9 |
+
RERANK_REPO = "Xenova/bge-reranker-base"
|
| 10 |
+
RERANK_ONNX = "onnx/model_quantized.onnx" # int8: ~3x faster on CPU, negligible quality loss
|
| 11 |
+
MAX_TOKENS = 512
|
| 12 |
+
_MAX_DOC_CHARS = 3000 # cap doc text before tokenizing (512 tokens ~ 2-3k chars)
|
| 13 |
+
|
| 14 |
+
|
| 15 |
+
class Reranker:
|
| 16 |
+
"""Cross-encoder that scores (query, section) pairs for relevance.
|
| 17 |
+
|
| 18 |
+
Loads a BGE reranker as ONNX and runs it on CPU -- no API key; the model is
|
| 19 |
+
downloaded once and cached. A cross-encoder reads the query and section
|
| 20 |
+
jointly, so it judges true relevance far better than the BM25/embedding
|
| 21 |
+
similarities used to build the candidate pool.
|
| 22 |
+
"""
|
| 23 |
+
|
| 24 |
+
def __init__(self):
|
| 25 |
+
model_path = hf_hub_download(RERANK_REPO, RERANK_ONNX)
|
| 26 |
+
tok_path = hf_hub_download(RERANK_REPO, "tokenizer.json")
|
| 27 |
+
cfg_path = hf_hub_download(RERANK_REPO, "config.json")
|
| 28 |
+
with open(cfg_path, encoding="utf-8") as fh:
|
| 29 |
+
self.pad_id = json.load(fh).get("pad_token_id", 0)
|
| 30 |
+
|
| 31 |
+
self.session = ort.InferenceSession(model_path, providers=["CPUExecutionProvider"])
|
| 32 |
+
self.input_names = {i.name for i in self.session.get_inputs()}
|
| 33 |
+
|
| 34 |
+
self.tokenizer = Tokenizer.from_file(tok_path)
|
| 35 |
+
# only_second keeps the query intact and truncates the (longer) section.
|
| 36 |
+
self.tokenizer.enable_truncation(max_length=MAX_TOKENS, strategy="only_second")
|
| 37 |
+
|
| 38 |
+
def score(self, query, documents):
|
| 39 |
+
"""Return a relevance logit for each document paired with the query.
|
| 40 |
+
|
| 41 |
+
Higher means more relevant. The returned list is aligned with `documents`.
|
| 42 |
+
"""
|
| 43 |
+
if not documents:
|
| 44 |
+
return []
|
| 45 |
+
encs = self.tokenizer.encode_batch(
|
| 46 |
+
[(query, doc[:_MAX_DOC_CHARS]) for doc in documents])
|
| 47 |
+
width = max(len(e.ids) for e in encs)
|
| 48 |
+
input_ids = np.full((len(encs), width), self.pad_id, dtype=np.int64)
|
| 49 |
+
attention = np.zeros((len(encs), width), dtype=np.int64)
|
| 50 |
+
type_ids = np.zeros((len(encs), width), dtype=np.int64)
|
| 51 |
+
for row, enc in enumerate(encs):
|
| 52 |
+
n = len(enc.ids)
|
| 53 |
+
input_ids[row, :n] = enc.ids
|
| 54 |
+
attention[row, :n] = enc.attention_mask
|
| 55 |
+
type_ids[row, :n] = enc.type_ids
|
| 56 |
+
|
| 57 |
+
feed = {"input_ids": input_ids, "attention_mask": attention}
|
| 58 |
+
if "token_type_ids" in self.input_names:
|
| 59 |
+
feed["token_type_ids"] = type_ids
|
| 60 |
+
logits = self.session.run(None, feed)[0]
|
| 61 |
+
return np.asarray(logits, dtype=np.float32).reshape(-1).tolist()
|
| 62 |
+
|
| 63 |
+
|
| 64 |
+
def main():
|
| 65 |
+
import time
|
| 66 |
+
print(f"Loading {RERANK_REPO} ({RERANK_ONNX}) ...")
|
| 67 |
+
reranker = Reranker()
|
| 68 |
+
query = "powers of arrest without warrant"
|
| 69 |
+
docs = [
|
| 70 |
+
"Arrest without warrant. A peace officer may arrest without warrant a "
|
| 71 |
+
"person who has committed a criminal offence.",
|
| 72 |
+
"Definitions. In this Act, fish means any fish and includes shellfish, "
|
| 73 |
+
"crustaceans and marine animals.",
|
| 74 |
+
"Importation. It is prohibited to import cannabis except as authorized "
|
| 75 |
+
"under this Act.",
|
| 76 |
+
]
|
| 77 |
+
start = time.perf_counter()
|
| 78 |
+
scores = reranker.score(query, docs)
|
| 79 |
+
elapsed = (time.perf_counter() - start) * 1000
|
| 80 |
+
print(f"\nQuery: {query!r}")
|
| 81 |
+
for doc, score in sorted(zip(docs, scores), key=lambda x: x[1], reverse=True):
|
| 82 |
+
print(f" {score:8.3f} {doc[:62]}")
|
| 83 |
+
print(f"\n{elapsed:.0f} ms for {len(docs)} documents")
|
| 84 |
+
|
| 85 |
+
|
| 86 |
+
if __name__ == "__main__":
|
| 87 |
+
main()
|
canlex/server.py
ADDED
|
@@ -0,0 +1,406 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
#!/usr/bin/env python3
|
| 2 |
+
"""MCP server exposing CanLex Canadian legislation retrieval as tools.
|
| 3 |
+
|
| 4 |
+
Runs over stdio. Launched by an MCP client (Claude Code / Claude Desktop);
|
| 5 |
+
it requires no API keys -- retrieval is fully local.
|
| 6 |
+
"""
|
| 7 |
+
import os
|
| 8 |
+
import sys
|
| 9 |
+
from pathlib import Path
|
| 10 |
+
from typing import Optional
|
| 11 |
+
|
| 12 |
+
# Allow this file to be launched directly by an MCP client, cwd-independent.
|
| 13 |
+
sys.path.insert(0, str(Path(__file__).resolve().parent.parent))
|
| 14 |
+
|
| 15 |
+
from pydantic import BaseModel, ConfigDict, Field
|
| 16 |
+
from mcp.server.fastmcp import FastMCP
|
| 17 |
+
|
| 18 |
+
from canlex.index import LegislationIndex
|
| 19 |
+
|
| 20 |
+
mcp = FastMCP("canlex_mcp", host="0.0.0.0",
|
| 21 |
+
port=int(os.environ.get("PORT", "8000")))
|
| 22 |
+
|
| 23 |
+
_READONLY = {
|
| 24 |
+
"readOnlyHint": True,
|
| 25 |
+
"destructiveHint": False,
|
| 26 |
+
"idempotentHint": True,
|
| 27 |
+
"openWorldHint": False,
|
| 28 |
+
}
|
| 29 |
+
|
| 30 |
+
# Prepended to every result so the model grounds, cites, and hedges correctly.
|
| 31 |
+
GROUNDING_NOTE = (
|
| 32 |
+
"ANSWERING INSTRUCTIONS: Base the answer only on the material below. Cite "
|
| 33 |
+
"specific provisions and quote key operative words (e.g. 'IRPA s. 34(1)(c)'). "
|
| 34 |
+
"Distinguish the kinds of source: enacted law (Acts and regulations) is binding; "
|
| 35 |
+
"CBSA D-Memoranda are administrative guidance -- persuasive only, not binding, "
|
| 36 |
+
"and a court may disagree with them; collective agreements and the National "
|
| 37 |
+
"Joint Council directives they incorporate are binding employment-terms "
|
| 38 |
+
"instruments for a bargaining unit. State the "
|
| 39 |
+
"'current to', modified, or in-force date when stating the law. If the material "
|
| 40 |
+
"below does not fully resolve the question -- including where it turns on case "
|
| 41 |
+
"law or facts not present here -- say so explicitly. This is legal information, "
|
| 42 |
+
"not legal advice."
|
| 43 |
+
)
|
| 44 |
+
|
| 45 |
+
_INDEX: Optional[LegislationIndex] = None
|
| 46 |
+
|
| 47 |
+
|
| 48 |
+
def _index() -> LegislationIndex:
|
| 49 |
+
"""Load and cache the legislation index on first use."""
|
| 50 |
+
global _INDEX
|
| 51 |
+
if _INDEX is None:
|
| 52 |
+
_INDEX = LegislationIndex()
|
| 53 |
+
return _INDEX
|
| 54 |
+
|
| 55 |
+
|
| 56 |
+
def _format_section(c: dict) -> str:
|
| 57 |
+
"""Render one chunk (legislation, D-Memo, or agreement) as cited Markdown."""
|
| 58 |
+
doc_type = c.get("doc_type", "legislation")
|
| 59 |
+
header = f"### {c['citation']} — {c['marginal_note']}".rstrip(" —")
|
| 60 |
+
location = " > ".join(p for p in (c["part"], c["division"]) if p)
|
| 61 |
+
lines = [header]
|
| 62 |
+
if location:
|
| 63 |
+
lines.append(f"*{location}*")
|
| 64 |
+
if doc_type == "memorandum":
|
| 65 |
+
lines.append("_CBSA administrative guidance — persuasive, not binding law._")
|
| 66 |
+
lines.append(f"(modified {c['current_to'] or 'n/a'})")
|
| 67 |
+
elif doc_type == "agreement":
|
| 68 |
+
lines.append("_Treasury Board collective agreement — a binding contract for "
|
| 69 |
+
"this bargaining unit._")
|
| 70 |
+
lines.append(f"(in force to {c['current_to'] or 'n/a'})")
|
| 71 |
+
elif doc_type == "directive":
|
| 72 |
+
lines.append("_National Joint Council directive — forms part of collective "
|
| 73 |
+
"agreements; binding for the matters it covers._")
|
| 74 |
+
lines.append(f"(effective {c['current_to'] or 'n/a'})")
|
| 75 |
+
else:
|
| 76 |
+
meta = [f"current to {c['current_to'] or 'n/a'}"]
|
| 77 |
+
if c["last_amended"]:
|
| 78 |
+
meta.append(f"last amended {c['last_amended']}")
|
| 79 |
+
lines.append(f"({'; '.join(meta)})")
|
| 80 |
+
lines.append("")
|
| 81 |
+
lines.append(c["text"])
|
| 82 |
+
lines.append("")
|
| 83 |
+
if c["history"]:
|
| 84 |
+
lines.append(f"Amendment history: {c['history']}")
|
| 85 |
+
lines.append(f"Source: {c['source_url']}")
|
| 86 |
+
return "\n".join(lines)
|
| 87 |
+
|
| 88 |
+
|
| 89 |
+
class SearchInput(BaseModel):
|
| 90 |
+
"""Input for canlex_search_legislation."""
|
| 91 |
+
model_config = ConfigDict(str_strip_whitespace=True, extra="forbid")
|
| 92 |
+
|
| 93 |
+
query: str = Field(
|
| 94 |
+
...,
|
| 95 |
+
description="Natural-language legal question or keywords, e.g. "
|
| 96 |
+
"'detention review timelines' or 'inadmissibility for serious criminality'.",
|
| 97 |
+
min_length=2, max_length=500,
|
| 98 |
+
)
|
| 99 |
+
top_k: int = Field(
|
| 100 |
+
default=6,
|
| 101 |
+
description="Number of sections to return (1-20). Use more for broad questions.",
|
| 102 |
+
ge=1, le=20,
|
| 103 |
+
)
|
| 104 |
+
act: Optional[str] = Field(
|
| 105 |
+
default=None,
|
| 106 |
+
description="Optional filter to a single Act, by short name or code "
|
| 107 |
+
"(e.g. 'IRPA' or 'I-2.5'). Omit to search every loaded Act.",
|
| 108 |
+
)
|
| 109 |
+
doc_type: Optional[str] = Field(
|
| 110 |
+
default=None,
|
| 111 |
+
description="Optional filter by source type: 'legislation' (Acts and "
|
| 112 |
+
"regulations), 'memorandum' (CBSA D-Memoranda), 'agreement' (collective "
|
| 113 |
+
"agreements), or 'directive' (NJC directives). Omit to search all.",
|
| 114 |
+
)
|
| 115 |
+
|
| 116 |
+
|
| 117 |
+
class GetSectionInput(BaseModel):
|
| 118 |
+
"""Input for canlex_get_section."""
|
| 119 |
+
model_config = ConfigDict(str_strip_whitespace=True, extra="forbid")
|
| 120 |
+
|
| 121 |
+
act: str = Field(..., description="Act short name or code, e.g. 'IRPA' or 'I-2.5'.",
|
| 122 |
+
min_length=1, max_length=60)
|
| 123 |
+
section: str = Field(..., description="Section number exactly as cited, e.g. '34', '20.1'.",
|
| 124 |
+
min_length=1, max_length=20)
|
| 125 |
+
|
| 126 |
+
|
| 127 |
+
@mcp.tool(name="canlex_search_legislation",
|
| 128 |
+
annotations={"title": "Search Canadian Legislation", **_READONLY})
|
| 129 |
+
def canlex_search_legislation(params: SearchInput) -> str:
|
| 130 |
+
"""Search Canadian federal law, CBSA D-Memoranda, agreements, and NJC directives.
|
| 131 |
+
|
| 132 |
+
The CanLex corpus has four kinds of source: 31 federal Acts and regulations
|
| 133 |
+
(immigration, customs, criminal, drugs, food/health, labour, privacy and more);
|
| 134 |
+
CBSA D-Memoranda (the Canada Border Services Agency's administrative guidance on
|
| 135 |
+
how it applies customs and border law); Treasury Board collective agreements
|
| 136 |
+
(currently the FB / Border Services group); and National Joint Council directives
|
| 137 |
+
(travel, relocation, isolated posts and more). Use this for ANY question about
|
| 138 |
+
that material. It ranks results by relevance and returns their full text so the
|
| 139 |
+
answer can cite the actual wording; an explicit section reference (e.g. "section
|
| 140 |
+
34") is always surfaced. Each result is marked with its source type.
|
| 141 |
+
|
| 142 |
+
Args:
|
| 143 |
+
params (SearchInput): Validated input containing:
|
| 144 |
+
- query (str): Legal question or keywords to search for.
|
| 145 |
+
- top_k (int): How many sections to return, 1-20 (default 6).
|
| 146 |
+
- act (Optional[str]): Restrict to one Act by short name/code, or omit for all.
|
| 147 |
+
- doc_type (Optional[str]): 'legislation', 'memorandum', 'agreement', or
|
| 148 |
+
'directive' to restrict to one source type; omit to search all.
|
| 149 |
+
|
| 150 |
+
Returns:
|
| 151 |
+
str: Markdown with answering instructions followed by the matching sections.
|
| 152 |
+
Each section block contains its citation, Part/Division, the 'current to' and
|
| 153 |
+
'last amended' dates, the full provision text, amendment history, and a source
|
| 154 |
+
URL. Returns a "No ... matched" message if nothing is found.
|
| 155 |
+
|
| 156 |
+
Examples:
|
| 157 |
+
- "What are the security grounds for inadmissibility?" -> query about s. 34.
|
| 158 |
+
- "detention review 48 hours" -> finds the detention-review provisions.
|
| 159 |
+
- Don't use to look up a known section number verbatim -- use canlex_get_section.
|
| 160 |
+
"""
|
| 161 |
+
index = _index()
|
| 162 |
+
results = index.search(params.query, top_k=params.top_k, act=params.act,
|
| 163 |
+
doc_type=params.doc_type)
|
| 164 |
+
if not results:
|
| 165 |
+
scope = f" in '{params.act}'" if params.act else ""
|
| 166 |
+
return (f"No results matched '{params.query}'{scope}. "
|
| 167 |
+
f"Try broader or different keywords, or call canlex_list_acts to see "
|
| 168 |
+
f"what is currently loaded.")
|
| 169 |
+
blocks = [GROUNDING_NOTE, "",
|
| 170 |
+
f'{len(results)} relevant section(s) for: "{params.query}"']
|
| 171 |
+
for c in results:
|
| 172 |
+
blocks.append("")
|
| 173 |
+
blocks.append("---")
|
| 174 |
+
blocks.append("")
|
| 175 |
+
blocks.append(_format_section(c))
|
| 176 |
+
return "\n".join(blocks)
|
| 177 |
+
|
| 178 |
+
|
| 179 |
+
@mcp.tool(name="canlex_get_section",
|
| 180 |
+
annotations={"title": "Get a Legislation Section", **_READONLY})
|
| 181 |
+
def canlex_get_section(params: GetSectionInput) -> str:
|
| 182 |
+
"""Retrieve one specific section of legislation verbatim, by Act and section number.
|
| 183 |
+
|
| 184 |
+
Use this when the exact citation is already known (e.g. the user asks about
|
| 185 |
+
"IRPA section 34" or a provision cross-references "subsection 25.1(1)").
|
| 186 |
+
|
| 187 |
+
Args:
|
| 188 |
+
params (GetSectionInput): Validated input containing:
|
| 189 |
+
- act (str): Act short name or code, e.g. 'IRPA' or 'I-2.5'.
|
| 190 |
+
- section (str): Section number exactly as cited, e.g. '34' or '20.1'.
|
| 191 |
+
|
| 192 |
+
Returns:
|
| 193 |
+
str: Markdown with answering instructions followed by the section's citation,
|
| 194 |
+
Part/Division, 'current to' and 'last amended' dates, full provision text,
|
| 195 |
+
amendment history, and source URL. Returns an actionable error message (listing
|
| 196 |
+
the loaded Acts) if the Act or section is not found.
|
| 197 |
+
|
| 198 |
+
Examples:
|
| 199 |
+
- "Show me IRPA s. 34" -> act='IRPA', section='34'.
|
| 200 |
+
- "What does subsection 20.1 say" -> act='IRPA', section='20.1'.
|
| 201 |
+
"""
|
| 202 |
+
index = _index()
|
| 203 |
+
section = index.get_section(params.act, params.section)
|
| 204 |
+
if section is None:
|
| 205 |
+
acts = sorted({c["act_short"] for c in index.chunks})
|
| 206 |
+
return (f"Error: no section '{params.section}' found in '{params.act}'. "
|
| 207 |
+
f"Loaded Acts: {', '.join(acts) or 'none'}. Check the section number, "
|
| 208 |
+
f"or use canlex_search_legislation to locate the provision by topic.")
|
| 209 |
+
return GROUNDING_NOTE + "\n\n" + _format_section(section)
|
| 210 |
+
|
| 211 |
+
|
| 212 |
+
@mcp.tool(name="canlex_list_acts",
|
| 213 |
+
annotations={"title": "List Loaded Legislation", **_READONLY})
|
| 214 |
+
def canlex_list_acts() -> str:
|
| 215 |
+
"""List what the CanLex corpus contains -- Acts and regulations, CBSA
|
| 216 |
+
D-Memoranda, collective agreements, and NJC directives.
|
| 217 |
+
|
| 218 |
+
Use this to learn the scope and currency of the corpus before searching, or to
|
| 219 |
+
report it to the user.
|
| 220 |
+
|
| 221 |
+
Returns:
|
| 222 |
+
str: Markdown grouped by source type.
|
| 223 |
+
"""
|
| 224 |
+
index = _index()
|
| 225 |
+
acts: dict[str, dict] = {}
|
| 226 |
+
agreements: dict[str, dict] = {}
|
| 227 |
+
directives: dict[str, dict] = {}
|
| 228 |
+
memo_numbers: set[str] = set()
|
| 229 |
+
memo_chunks = 0
|
| 230 |
+
memo_date = ""
|
| 231 |
+
for c in index.chunks:
|
| 232 |
+
doc_type = c.get("doc_type", "legislation")
|
| 233 |
+
if doc_type == "memorandum":
|
| 234 |
+
memo_numbers.add(c["section"])
|
| 235 |
+
memo_chunks += 1
|
| 236 |
+
memo_date = max(memo_date, c["current_to"] or "")
|
| 237 |
+
elif doc_type == "agreement":
|
| 238 |
+
entry = agreements.setdefault(c["act_code"], {
|
| 239 |
+
"short": c["act_short"], "name": c["act_name"],
|
| 240 |
+
"current_to": c["current_to"], "count": 0,
|
| 241 |
+
})
|
| 242 |
+
entry["count"] += 1
|
| 243 |
+
elif doc_type == "directive":
|
| 244 |
+
entry = directives.setdefault(c["act_code"], {
|
| 245 |
+
"short": c["act_short"], "current_to": c["current_to"], "count": 0,
|
| 246 |
+
})
|
| 247 |
+
entry["count"] += 1
|
| 248 |
+
else:
|
| 249 |
+
entry = acts.setdefault(c["act_code"], {
|
| 250 |
+
"short": c["act_short"], "name": c["act_name"],
|
| 251 |
+
"code": c["act_code"], "current_to": c["current_to"], "count": 0,
|
| 252 |
+
})
|
| 253 |
+
entry["count"] += 1
|
| 254 |
+
lines = ["# CanLex corpus", "", "## Enacted law"]
|
| 255 |
+
for a in sorted(acts.values(), key=lambda x: x["short"]):
|
| 256 |
+
lines.append(f"- **{a['short']}** — {a['name']} ({a['code']}): "
|
| 257 |
+
f"{a['count']} sections, current to {a['current_to'] or 'n/a'}")
|
| 258 |
+
if memo_numbers:
|
| 259 |
+
lines += ["", "## CBSA guidance",
|
| 260 |
+
f"- **D-Memoranda** — {len(memo_numbers)} memoranda "
|
| 261 |
+
f"({memo_chunks} sections), modified up to {memo_date or 'n/a'}. "
|
| 262 |
+
f"Administrative guidance on customs and border law; "
|
| 263 |
+
f"persuasive, not binding."]
|
| 264 |
+
if agreements:
|
| 265 |
+
lines += ["", "## Collective agreements"]
|
| 266 |
+
for a in sorted(agreements.values(), key=lambda x: x["short"]):
|
| 267 |
+
lines.append(f"- **{a['short']}** — {a['name']}: {a['count']} articles, "
|
| 268 |
+
f"in force to {a['current_to'] or 'n/a'}")
|
| 269 |
+
if directives:
|
| 270 |
+
lines += ["", "## NJC directives"]
|
| 271 |
+
for a in sorted(directives.values(), key=lambda x: x["short"]):
|
| 272 |
+
lines.append(f"- **{a['short']}**: {a['count']} sections, "
|
| 273 |
+
f"effective {a['current_to'] or 'n/a'}")
|
| 274 |
+
lines += ["", "Search with canlex_search_legislation; filter by doc_type "
|
| 275 |
+
"(legislation / memorandum / agreement / directive). Fetch a known "
|
| 276 |
+
"provision with canlex_get_section, or a case's citations with "
|
| 277 |
+
"canlex_case."]
|
| 278 |
+
return "\n".join(lines)
|
| 279 |
+
|
| 280 |
+
|
| 281 |
+
_CITATOR = None
|
| 282 |
+
|
| 283 |
+
|
| 284 |
+
def _citator():
|
| 285 |
+
"""Load and cache the CanLII citator on first use."""
|
| 286 |
+
global _CITATOR
|
| 287 |
+
if _CITATOR is None:
|
| 288 |
+
from canlex.citator import Citator
|
| 289 |
+
_CITATOR = Citator()
|
| 290 |
+
return _CITATOR
|
| 291 |
+
|
| 292 |
+
|
| 293 |
+
class CaseInput(BaseModel):
|
| 294 |
+
"""Input for canlex_case."""
|
| 295 |
+
model_config = ConfigDict(str_strip_whitespace=True, extra="forbid")
|
| 296 |
+
|
| 297 |
+
case_url: str = Field(
|
| 298 |
+
...,
|
| 299 |
+
description="A full canlii.org case URL, e.g. "
|
| 300 |
+
"'https://www.canlii.org/en/ca/scc/doc/2019/2019scc65/2019scc65.html'. "
|
| 301 |
+
"Find it by web search if you only have the case name.",
|
| 302 |
+
min_length=10, max_length=400,
|
| 303 |
+
)
|
| 304 |
+
|
| 305 |
+
|
| 306 |
+
def _format_case(report: dict) -> str:
|
| 307 |
+
"""Render a CanLII citator report as Markdown."""
|
| 308 |
+
meta = report["meta"]
|
| 309 |
+
lines = [f"## {meta.get('title', '(untitled case)')}",
|
| 310 |
+
meta.get("citation", "").strip()]
|
| 311 |
+
facts = []
|
| 312 |
+
if meta.get("decisionDate"):
|
| 313 |
+
facts.append(f"decided {meta['decisionDate']}")
|
| 314 |
+
if meta.get("docketNumber"):
|
| 315 |
+
facts.append(f"docket {meta['docketNumber']}")
|
| 316 |
+
if facts:
|
| 317 |
+
lines.append("(" + "; ".join(facts) + ")")
|
| 318 |
+
if meta.get("keywords"):
|
| 319 |
+
lines.append(f"**Keywords:** {meta['keywords']}")
|
| 320 |
+
if meta.get("topics"):
|
| 321 |
+
lines.append(f"**Topics:** {meta['topics']}")
|
| 322 |
+
if meta.get("url"):
|
| 323 |
+
lines.append(f"CanLII: {meta['url']}")
|
| 324 |
+
lines.append("")
|
| 325 |
+
lines.append("_CanLII citator data (live). This is case metadata and the "
|
| 326 |
+
"citation graph only -- not the judgment text; follow the CanLII "
|
| 327 |
+
"link to read the decision. A case is binding precedent depending "
|
| 328 |
+
"on the court and jurisdiction._")
|
| 329 |
+
|
| 330 |
+
def case_list(label, block):
|
| 331 |
+
rows = [f"\n### {label}: {block['total']}"]
|
| 332 |
+
for item in block["items"]:
|
| 333 |
+
rows.append(f"- {item.get('title', '')} — {item.get('citation', '')}")
|
| 334 |
+
extra = block["total"] - len(block["items"])
|
| 335 |
+
if extra > 0:
|
| 336 |
+
rows.append(f" ...and {extra} more.")
|
| 337 |
+
return rows
|
| 338 |
+
|
| 339 |
+
lines += case_list("Cited by (later cases citing this one)", report["citingCases"])
|
| 340 |
+
lines += case_list("Cites (authorities this case relies on)", report["citedCases"])
|
| 341 |
+
|
| 342 |
+
legis = report["citedLegislations"]
|
| 343 |
+
lines.append(f"\n### Legislation cited: {legis['total']}")
|
| 344 |
+
for item in legis["items"]:
|
| 345 |
+
kind = item.get("type", "")
|
| 346 |
+
lines.append(f"- {item.get('title', '')} �� {item.get('citation', '')}"
|
| 347 |
+
+ (f" [{kind}]" if kind else ""))
|
| 348 |
+
extra = legis["total"] - len(legis["items"])
|
| 349 |
+
if extra > 0:
|
| 350 |
+
lines.append(f" ...and {extra} more.")
|
| 351 |
+
return "\n".join(lines)
|
| 352 |
+
|
| 353 |
+
|
| 354 |
+
@mcp.tool(name="canlex_case",
|
| 355 |
+
annotations={"title": "CanLII Case Citator", "readOnlyHint": True,
|
| 356 |
+
"destructiveHint": False, "idempotentHint": True,
|
| 357 |
+
"openWorldHint": True})
|
| 358 |
+
def canlex_case(params: CaseInput) -> str:
|
| 359 |
+
"""Look up a Canadian court case on CanLII and return its citation graph.
|
| 360 |
+
|
| 361 |
+
Given a case's full canlii.org URL, returns the case's metadata plus its
|
| 362 |
+
citator: the cases it cites, the cases that cite it (its treatment and how
|
| 363 |
+
leading it is), and the legislation it cites -- live from the CanLII API.
|
| 364 |
+
|
| 365 |
+
The CanLII API has no case search, so the case's full canlii.org URL must be
|
| 366 |
+
supplied (find it by web search if you only have the case name). This returns
|
| 367 |
+
metadata and the citation graph only, NOT the judgment text -- follow the
|
| 368 |
+
CanLII link for that. A call takes ~15-20 seconds (the API is rate-limited).
|
| 369 |
+
|
| 370 |
+
Args:
|
| 371 |
+
params (CaseInput): contains case_url -- a full canlii.org case URL.
|
| 372 |
+
|
| 373 |
+
Returns:
|
| 374 |
+
str: Markdown -- the case's title, neutral citation, date, docket and
|
| 375 |
+
topics; how many cases cite it (with examples); how many it cites; and the
|
| 376 |
+
legislation it cites. Returns an error message if the URL is not a
|
| 377 |
+
recognized canlii.org case URL, or if the CanLII API is unavailable.
|
| 378 |
+
"""
|
| 379 |
+
try:
|
| 380 |
+
citator = _citator()
|
| 381 |
+
except Exception as exc:
|
| 382 |
+
return (f"The case citator is unavailable: {exc} "
|
| 383 |
+
f"It needs a CanLII API key in canlii_key.txt.")
|
| 384 |
+
try:
|
| 385 |
+
report = citator.case_report(params.case_url)
|
| 386 |
+
except Exception as exc:
|
| 387 |
+
return f"CanLII lookup failed: {type(exc).__name__}: {exc}"
|
| 388 |
+
if "error" in report:
|
| 389 |
+
return f"Error: {report['error']}"
|
| 390 |
+
return _format_case(report)
|
| 391 |
+
|
| 392 |
+
|
| 393 |
+
if __name__ == "__main__":
|
| 394 |
+
try:
|
| 395 |
+
idx = _index()
|
| 396 |
+
print(f"CanLex MCP: {len(idx.chunks)} sections loaded.", file=sys.stderr)
|
| 397 |
+
except Exception as exc: # surfaced in the MCP client's server logs
|
| 398 |
+
print(f"CanLex MCP: failed to load legislation index: {exc}\n"
|
| 399 |
+
f"Run 'py -m canlex.ingest' first.", file=sys.stderr)
|
| 400 |
+
sys.exit(1)
|
| 401 |
+
# CANLEX_HTTP switches on the remote (web) transport; default is local stdio.
|
| 402 |
+
if os.environ.get("CANLEX_HTTP"):
|
| 403 |
+
print("CanLex MCP: serving over streamable-HTTP.", file=sys.stderr)
|
| 404 |
+
mcp.run(transport="streamable-http")
|
| 405 |
+
else:
|
| 406 |
+
mcp.run()
|
data/processed/A-8.8.json
ADDED
|
@@ -0,0 +1,801 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"id": "A-8.8-s1",
|
| 4 |
+
"act_code": "A-8.8",
|
| 5 |
+
"act_short": "AAAMPA",
|
| 6 |
+
"act_name": "Agriculture and Agri-Food Administrative Monetary Penalties Act",
|
| 7 |
+
"section": "1",
|
| 8 |
+
"marginal_note": "Short title",
|
| 9 |
+
"part": "",
|
| 10 |
+
"division": "",
|
| 11 |
+
"heading": "Short Title",
|
| 12 |
+
"text": "1 This Act may be cited as the Agriculture and Agri-Food Administrative Monetary Penalties Act.",
|
| 13 |
+
"history": "",
|
| 14 |
+
"last_amended": "2002-12-31",
|
| 15 |
+
"current_to": "2022-03-22",
|
| 16 |
+
"citation": "AAAMPA, s. 1",
|
| 17 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/a-8.8/section-1.html"
|
| 18 |
+
},
|
| 19 |
+
{
|
| 20 |
+
"id": "A-8.8-s2",
|
| 21 |
+
"act_code": "A-8.8",
|
| 22 |
+
"act_short": "AAAMPA",
|
| 23 |
+
"act_name": "Agriculture and Agri-Food Administrative Monetary Penalties Act",
|
| 24 |
+
"section": "2",
|
| 25 |
+
"marginal_note": "Definitions",
|
| 26 |
+
"part": "",
|
| 27 |
+
"division": "",
|
| 28 |
+
"heading": "Interpretation",
|
| 29 |
+
"text": "2 In this Act,\nagri-food Act means the Farm Debt Mediation Act, the Feeds Act, the Fertilizers Act, the Health of Animals Act, the Pest Control Products Act, the Plant Protection Act, the Safe Food for Canadians Act or the Seeds Act; (loi agroalimentaire)\nMinister means the Minister of Agriculture and Agri-Food, except that\n(a) it means the Minister of Health in relation to a violation involving a contravention of\n(i) the Pest Control Products Act, or\n(ii) a provision relating to food safety of an agri-food Act or of a regulation made under such an Act, and\n(b) it means the Minister of Public Safety and Emergency Preparedness in relation to a notice of violation issued in respect of the contravention of program legislation referred to in subsection 11(5) of the Canadian Food Inspection Agency Act; (ministre)\npenalty means an administrative monetary penalty imposed under this Act for a violation; (sanction)\nprescribed means prescribed by regulation; (Version anglaise seulement)\nTribunal means the Review Tribunal continued by subsection 27(1); (Commission)",
|
| 30 |
+
"history": "1995, c. 40, s. 2; 1997, c. 21, s. 30; 2002, c. 28, s. 82; 2005, c. 38, ss. 30, 145; 2012, c. 24, s. 98; 2015, c. 2, s. 113",
|
| 31 |
+
"last_amended": "2019-01-15",
|
| 32 |
+
"current_to": "2022-03-22",
|
| 33 |
+
"citation": "AAAMPA, s. 2",
|
| 34 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/a-8.8/section-2.html"
|
| 35 |
+
},
|
| 36 |
+
{
|
| 37 |
+
"id": "A-8.8-s3",
|
| 38 |
+
"act_code": "A-8.8",
|
| 39 |
+
"act_short": "AAAMPA",
|
| 40 |
+
"act_name": "Agriculture and Agri-Food Administrative Monetary Penalties Act",
|
| 41 |
+
"section": "3",
|
| 42 |
+
"marginal_note": "Purpose of Act",
|
| 43 |
+
"part": "",
|
| 44 |
+
"division": "",
|
| 45 |
+
"heading": "Purpose of Act",
|
| 46 |
+
"text": "3 The purpose of this Act is to establish, as an alternative to the existing penal system and as a supplement to existing enforcement measures, a fair and efficient administrative monetary penalty system for the enforcement of the agri-food Acts.",
|
| 47 |
+
"history": "",
|
| 48 |
+
"last_amended": "2002-12-31",
|
| 49 |
+
"current_to": "2022-03-22",
|
| 50 |
+
"citation": "AAAMPA, s. 3",
|
| 51 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/a-8.8/section-3.html"
|
| 52 |
+
},
|
| 53 |
+
{
|
| 54 |
+
"id": "A-8.8-s4",
|
| 55 |
+
"act_code": "A-8.8",
|
| 56 |
+
"act_short": "AAAMPA",
|
| 57 |
+
"act_name": "Agriculture and Agri-Food Administrative Monetary Penalties Act",
|
| 58 |
+
"section": "4",
|
| 59 |
+
"marginal_note": "Regulations",
|
| 60 |
+
"part": "",
|
| 61 |
+
"division": "",
|
| 62 |
+
"heading": "Powers of Minister",
|
| 63 |
+
"text": "4\n(1) The Minister may make regulations\n(a) designating as a violation that may be proceeded with in accordance with this Act\n(i) the contravention of any specified provision of an agri-food Act or of a regulation made under an agri-food Act,\n(ii) the contravention of any specified order, or class of orders, made by the Minister under the Plant Protection Act, or\n(iii) the refusal or neglect to perform any specified duty, or class of duties, imposed by or under the Plant Protection Act, the Health of Animals Act, the Pest Control Products Act or the Safe Food for Canadians Act;\nif the contravention, or the failure or neglect to perform the duty, as the case may be, is an offence under an agri-food Act;\n(b) classifying each violation as a minor violation, a serious violation or a very serious violation;\n(b.1) establishing, in respect of each violation, a short-form description to be used in notices of violation;\n(c) fixing a penalty, or a range of penalties, in respect of each violation;\n(d) respecting the circumstances under which, the criteria by which and the manner in which a penalty may be increased or reduced, including the reduction of a penalty pursuant to a compliance agreement under subsection 10(1);\n(e) respecting the determination of a lesser amount that may be paid in complete satisfaction of a penalty if paid within the prescribed time and manner;\n(f) respecting the circumstances under which reviews under this Act by the Tribunal shall be oral or in writing;\n(g) respecting the service of documents required or authorized to be served under this Act including, without restricting the generality of the foregoing, the manner of serving such documents, the proof of their service and the circumstances under which such documents shall be deemed to have been served;\n(h) prescribing anything that by this Act is to be prescribed; and\n(i) generally, for carrying out the purposes and provisions of this Act.\n(2) [Maximum penalties] The maximum penalty for a violation is\n(a) in the case of a violation that is committed by an individual otherwise than in the course of a business and that is not committed to obtain a financial benefit, $2,000; and\n(b) in any other case, $5,000 for a minor violation, $15,000 for a serious violation and $25,000 for a very serious violation.\n(3) [Criteria] Without restricting the generality of paragraph (1)(d), in making regulations respecting the criteria for increasing or reducing the amount of the penalty for a violation, the Minister shall include the following in any such criteria:\n(a) the degree of intention or negligence on the part of the person who committed the violation;\n(b) the harm done by the violation; and\n(c) the history of the person who committed the violation of prior violations or convictions under agri-food Acts within the five year period immediately before the violation.",
|
| 64 |
+
"history": "1995, c. 40, s. 4; 2012, c. 24, s. 99; 2015, c. 2, s. 114; 2016, c. 9, ss. 70, 72",
|
| 65 |
+
"last_amended": "2019-01-15",
|
| 66 |
+
"current_to": "2022-03-22",
|
| 67 |
+
"citation": "AAAMPA, s. 4",
|
| 68 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/a-8.8/section-4.html"
|
| 69 |
+
},
|
| 70 |
+
{
|
| 71 |
+
"id": "A-8.8-s5",
|
| 72 |
+
"act_code": "A-8.8",
|
| 73 |
+
"act_short": "AAAMPA",
|
| 74 |
+
"act_name": "Agriculture and Agri-Food Administrative Monetary Penalties Act",
|
| 75 |
+
"section": "5",
|
| 76 |
+
"marginal_note": "How act or omission may be proceeded with",
|
| 77 |
+
"part": "",
|
| 78 |
+
"division": "",
|
| 79 |
+
"heading": "Powers of Minister",
|
| 80 |
+
"text": "5 Where any act or omission can be proceeded with as a violation or as an offence, the Minister may commence proceedings in respect of that act or omission as a violation or recommend that it be proceeded with as an offence, but proceeding with it as a violation precludes proceeding with it as an offence, and proceeding with it as an offence precludes proceeding with it as a violation.",
|
| 81 |
+
"history": "",
|
| 82 |
+
"last_amended": "2002-12-31",
|
| 83 |
+
"current_to": "2022-03-22",
|
| 84 |
+
"citation": "AAAMPA, s. 5",
|
| 85 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/a-8.8/section-5.html"
|
| 86 |
+
},
|
| 87 |
+
{
|
| 88 |
+
"id": "A-8.8-s6",
|
| 89 |
+
"act_code": "A-8.8",
|
| 90 |
+
"act_short": "AAAMPA",
|
| 91 |
+
"act_name": "Agriculture and Agri-Food Administrative Monetary Penalties Act",
|
| 92 |
+
"section": "6",
|
| 93 |
+
"marginal_note": "Power of Minister — notices of violation",
|
| 94 |
+
"part": "",
|
| 95 |
+
"division": "",
|
| 96 |
+
"heading": "Powers of Minister",
|
| 97 |
+
"text": "6 The Minister may designate persons, or classes of persons, who are authorized to issue notices of violation.",
|
| 98 |
+
"history": "1995, c. 40, s. 6; 2015, c. 2, s. 115",
|
| 99 |
+
"last_amended": "2015-02-27",
|
| 100 |
+
"current_to": "2022-03-22",
|
| 101 |
+
"citation": "AAAMPA, s. 6",
|
| 102 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/a-8.8/section-6.html"
|
| 103 |
+
},
|
| 104 |
+
{
|
| 105 |
+
"id": "A-8.8-s7",
|
| 106 |
+
"act_code": "A-8.8",
|
| 107 |
+
"act_short": "AAAMPA",
|
| 108 |
+
"act_name": "Agriculture and Agri-Food Administrative Monetary Penalties Act",
|
| 109 |
+
"section": "7",
|
| 110 |
+
"marginal_note": "Commission of violation",
|
| 111 |
+
"part": "",
|
| 112 |
+
"division": "",
|
| 113 |
+
"heading": "Proceedings",
|
| 114 |
+
"text": "7\n(1) Every person who\n(a) contravenes any provision of an agri-food Act or of a regulation made under an agri-food Act,\n(b) contravenes any order made by the Minister under the Plant Protection Act, or\n(c) refuses or neglects to perform any duty imposed by or under the Plant Protection Act, the Health of Animals Act, the Pest Control Products Act or the Safe Food for Canadians Act\nthe contravention of which, or the refusal or neglect of which, is designated to be a violation by a regulation made under paragraph 4(1)(a) commits a violation and is liable to a warning or to a penalty in accordance with this Act.\n(2) [Issuance of notice of violation] If a person designated under section 6 has reasonable grounds to believe that a person has committed a violation, the designated person may issue, and shall cause to be served on the person, a notice of violation that names the person, identifies the violation and\n(a) contains a warning that the person has committed a violation; or\n(b) sets out\n(i) the penalty, established in accordance with the regulations, for the violation that the person is liable to pay,\n(ii) particulars concerning the time for paying and the manner of paying the penalty, and\n(iii) subject to the regulations, a lesser amount that may be paid in complete satisfaction of the penalty if paid within the time and manner specified in the notice.\n(3) [Summary of rights] A notice of violation must clearly summarize, in plain language, the rights and obligations under this Act of the person on whom it is served, including the right to have the facts of the violation reviewed by the Minister or the Tribunal, and the procedure for requesting such a review.",
|
| 115 |
+
"history": "1995, c. 40, s. 7; 2012, c. 24, s. 100(E); 2015, c. 2, s. 116(E); 2016, c. 9, ss. 71(E), 72(E)",
|
| 116 |
+
"last_amended": "2019-01-15",
|
| 117 |
+
"current_to": "2022-03-22",
|
| 118 |
+
"citation": "AAAMPA, s. 7",
|
| 119 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/a-8.8/section-7.html"
|
| 120 |
+
},
|
| 121 |
+
{
|
| 122 |
+
"id": "A-8.8-s8",
|
| 123 |
+
"act_code": "A-8.8",
|
| 124 |
+
"act_short": "AAAMPA",
|
| 125 |
+
"act_name": "Agriculture and Agri-Food Administrative Monetary Penalties Act",
|
| 126 |
+
"section": "8",
|
| 127 |
+
"marginal_note": "Notices with warning — request for review",
|
| 128 |
+
"part": "",
|
| 129 |
+
"division": "",
|
| 130 |
+
"heading": "Notices of Violation with Warning",
|
| 131 |
+
"text": "8\n(1) Where a notice of violation contains a warning, the person named in the notice may, in the prescribed time and manner, request a review of the facts of the violation by the Minister or the Tribunal.\n(2) [Deeming] Where a person who is served with a notice of violation that contains a warning does not request a review under subsection (1) in the prescribed time and manner, the person is deemed to have committed the violation identified in the notice of violation.",
|
| 132 |
+
"history": "",
|
| 133 |
+
"last_amended": "2002-12-31",
|
| 134 |
+
"current_to": "2022-03-22",
|
| 135 |
+
"citation": "AAAMPA, s. 8",
|
| 136 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/a-8.8/section-8.html"
|
| 137 |
+
},
|
| 138 |
+
{
|
| 139 |
+
"id": "A-8.8-s9",
|
| 140 |
+
"act_code": "A-8.8",
|
| 141 |
+
"act_short": "AAAMPA",
|
| 142 |
+
"act_name": "Agriculture and Agri-Food Administrative Monetary Penalties Act",
|
| 143 |
+
"section": "9",
|
| 144 |
+
"marginal_note": "Notices with penalty — payment",
|
| 145 |
+
"part": "",
|
| 146 |
+
"division": "",
|
| 147 |
+
"heading": "Notices of Violation with Penalty",
|
| 148 |
+
"text": "9\n(1) Where a notice of violation sets out a penalty and the person named in the notice pays, in the prescribed time and manner, the amount of the penalty or, subject to the regulations, the lesser amount set out in the notice that may be paid in lieu of the penalty,\n(a) the person is deemed to have committed the violation in respect of which the amount is paid;\n(b) the Minister shall accept that amount as and in complete satisfaction of the penalty; and\n(c) the proceedings commenced in respect of the violation under section 7 are ended.\n(2) [Alternatives to payment] Instead of paying the penalty set out in a notice of violation or, where applicable, the lesser amount that may be paid in lieu of the penalty, the person named in the notice may, in the prescribed time and manner,\n(a) if the penalty is $2,000 or more, request to enter into a compliance agreement with the Minister that ensures the person’s compliance with the agri-food Act or regulation to which the violation relates;\n(b) request a review by the Minister of the facts of the violation; or\n(c) request a review by the Tribunal of the facts of the violation.\n(3) [Deeming] Where a person who is served with a notice of violation that sets out a penalty does not pay the penalty in the prescribed time and manner or, where applicable, the lesser amount that may be paid in lieu of the penalty, and does not exercise any right referred to in subsection (2) in the prescribed time and manner, the person is deemed to have committed the violation identified in the notice.",
|
| 149 |
+
"history": "",
|
| 150 |
+
"last_amended": "2002-12-31",
|
| 151 |
+
"current_to": "2022-03-22",
|
| 152 |
+
"citation": "AAAMPA, s. 9",
|
| 153 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/a-8.8/section-9.html"
|
| 154 |
+
},
|
| 155 |
+
{
|
| 156 |
+
"id": "A-8.8-s10",
|
| 157 |
+
"act_code": "A-8.8",
|
| 158 |
+
"act_short": "AAAMPA",
|
| 159 |
+
"act_name": "Agriculture and Agri-Food Administrative Monetary Penalties Act",
|
| 160 |
+
"section": "10",
|
| 161 |
+
"marginal_note": "Compliance agreements",
|
| 162 |
+
"part": "",
|
| 163 |
+
"division": "",
|
| 164 |
+
"heading": "Compliance Agreements",
|
| 165 |
+
"text": "10\n(1) After considering a request under paragraph 9(2)(a), the Minister may enter into a compliance agreement, as described in that paragraph, with the person making the request on such terms and conditions as are satisfactory to the Minister, which terms may\n(a) include a provision for the giving of reasonable security, in a form and in an amount satisfactory to the Minister, as a guarantee that the person will comply with the compliance agreement; and\n(b) provide for the reduction, in whole or in part, of the penalty for the violation.\n(2) [Deeming] A person who makes a request under paragraph 9(2)(a) and who enters into a compliance agreement with the Minister shall, on entering into the compliance agreement, be deemed to have committed the violation in respect of which the compliance agreement was entered into.\n(3) [Where compliance agreement complied with] Where the Minister is satisfied that a person who has entered into a compliance agreement has complied with the agreement, the Minister shall cause a notice to that effect to be served on the person and, on the service of that notice,\n(a) the proceedings commenced in respect of the violation under section 7 are ended; and\n(b) any security given under the compliance agreement by the person shall be returned to the person.\n(4) [Where compliance agreement not complied with] Where the Minister is of the opinion that a person who has entered into a compliance agreement has not complied with the agreement, the Minister shall cause a notice of default to be served on the person to the effect that\n(a) instead of the penalty set out in the notice of violation in respect of which the compliance agreement was entered into, the person is liable to pay twice the amount of that penalty and, for greater certainty, subsection 4(2) does not apply in respect of that amount; or\n(b) the security, if any, given under the compliance agreement by the person shall be forfeited to Her Majesty in right of Canada.\n(5) [Effect of notice of default] On the service of a notice under subsection (4), the person served has no right of set-off against any amount spent by the person under the compliance agreement and\n(a) the person served is liable to pay the amount set out in the notice; or\n(b) where the notice of default provides for the forfeiture of the security given under the compliance agreement, that security is forfeited to Her Majesty in right of Canada and the proceedings commenced in respect of the violation under section 7 are ended.\n(6) [Effect of payment] Where a person pays the amount set out in a notice of default under subsection (4) in the prescribed time and manner,\n(a) the Minister shall accept the amount as and in complete satisfaction of the amount owing; and\n(b) the proceedings commenced in respect of the violation under section 7 are ended.",
|
| 166 |
+
"history": "",
|
| 167 |
+
"last_amended": "2002-12-31",
|
| 168 |
+
"current_to": "2022-03-22",
|
| 169 |
+
"citation": "AAAMPA, s. 10",
|
| 170 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/a-8.8/section-10.html"
|
| 171 |
+
},
|
| 172 |
+
{
|
| 173 |
+
"id": "A-8.8-s11",
|
| 174 |
+
"act_code": "A-8.8",
|
| 175 |
+
"act_short": "AAAMPA",
|
| 176 |
+
"act_name": "Agriculture and Agri-Food Administrative Monetary Penalties Act",
|
| 177 |
+
"section": "11",
|
| 178 |
+
"marginal_note": "Refusal to enter into compliance agreement",
|
| 179 |
+
"part": "",
|
| 180 |
+
"division": "",
|
| 181 |
+
"heading": "Compliance Agreements",
|
| 182 |
+
"text": "11\n(1) Where the Minister refuses to enter into a compliance agreement pursuant to a request under paragraph 9(2)(a), the person who made the request may, in the prescribed time and manner,\n(a) pay the amount of the penalty; or\n(b) request a review by the Tribunal of the facts of the violation.\n(2) [Effect of payment] Where a person pays the amount referred to in paragraph (1)(a),\n(a) the person is deemed to have committed the violation in respect of which the payment is made;\n(b) the Minister shall accept the amount as and in complete satisfaction of the penalty; and\n(c) the proceedings commenced in respect of the violation under section 7 are ended.\n(3) [Deeming] If a person does not, in the prescribed time and manner, either pay the amount referred to in paragraph (1)(a) or request a review under paragraph (1)(b), the person is deemed to have committed the violation identified in the notice of violation.",
|
| 183 |
+
"history": "1995, c. 40, s. 11; 2015, c. 2, s. 117(E)",
|
| 184 |
+
"last_amended": "2015-02-27",
|
| 185 |
+
"current_to": "2022-03-22",
|
| 186 |
+
"citation": "AAAMPA, s. 11",
|
| 187 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/a-8.8/section-11.html"
|
| 188 |
+
},
|
| 189 |
+
{
|
| 190 |
+
"id": "A-8.8-s12",
|
| 191 |
+
"act_code": "A-8.8",
|
| 192 |
+
"act_short": "AAAMPA",
|
| 193 |
+
"act_name": "Agriculture and Agri-Food Administrative Monetary Penalties Act",
|
| 194 |
+
"section": "12",
|
| 195 |
+
"marginal_note": "Review under section 8",
|
| 196 |
+
"part": "",
|
| 197 |
+
"division": "",
|
| 198 |
+
"heading": "Review by Minister",
|
| 199 |
+
"text": "12\n(1) After concluding a review requested under section 8, the Minister shall determine whether or not the person committed the violation, and the Minister shall cause a notice of any decision under this subsection to be served on the person who requested the review.\n(2) [Right to review] Where the Minister decides under subsection (1) that a person has committed a violation, the person may, in the prescribed time and manner, request a review of the Minister’s decision by the Tribunal.",
|
| 200 |
+
"history": "",
|
| 201 |
+
"last_amended": "2002-12-31",
|
| 202 |
+
"current_to": "2022-03-22",
|
| 203 |
+
"citation": "AAAMPA, s. 12",
|
| 204 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/a-8.8/section-12.html"
|
| 205 |
+
},
|
| 206 |
+
{
|
| 207 |
+
"id": "A-8.8-s13",
|
| 208 |
+
"act_code": "A-8.8",
|
| 209 |
+
"act_short": "AAAMPA",
|
| 210 |
+
"act_name": "Agriculture and Agri-Food Administrative Monetary Penalties Act",
|
| 211 |
+
"section": "13",
|
| 212 |
+
"marginal_note": "Review under paragraph 9(2)(b)",
|
| 213 |
+
"part": "",
|
| 214 |
+
"division": "",
|
| 215 |
+
"heading": "Review by Minister",
|
| 216 |
+
"text": "13\n(1) After concluding a review requested under paragraph 9(2)(b), the Minister shall determine whether or not the person requesting the review committed a violation and, where the Minister decides that the person committed a violation but considers that the amount of the penalty for the violation was not established in accordance with the regulations, the Minister shall correct the amount of the penalty for the violation, and the Minister shall cause a notice of any decision under this subsection to be served on the person who requested the review.\n(2) [Payment or right to review] Where the Minister decides under subsection (1) that a person has committed a violation, the person may, in the prescribed time and manner,\n(a) pay the amount of the penalty set out in the notice referred to in subsection (1), in which case\n(i) the Minister shall accept the amount as and in complete satisfaction of the penalty, and\n(ii) the proceedings commenced in respect of the violation under section 7 are ended; or\n(b) request a review of the Minister’s decision by the Tribunal.",
|
| 217 |
+
"history": "",
|
| 218 |
+
"last_amended": "2002-12-31",
|
| 219 |
+
"current_to": "2022-03-22",
|
| 220 |
+
"citation": "AAAMPA, s. 13",
|
| 221 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/a-8.8/section-13.html"
|
| 222 |
+
},
|
| 223 |
+
{
|
| 224 |
+
"id": "A-8.8-s14",
|
| 225 |
+
"act_code": "A-8.8",
|
| 226 |
+
"act_short": "AAAMPA",
|
| 227 |
+
"act_name": "Agriculture and Agri-Food Administrative Monetary Penalties Act",
|
| 228 |
+
"section": "14",
|
| 229 |
+
"marginal_note": "Review by Tribunal",
|
| 230 |
+
"part": "",
|
| 231 |
+
"division": "",
|
| 232 |
+
"heading": "Review by Tribunal",
|
| 233 |
+
"text": "14\n(1) After concluding a review requested under this Act, the Tribunal shall, by order, as the case may be,\n(a) confirm, vary or set aside any decision of the Minister under section 12 or 13, or\n(b) determine whether or not the person requesting the review committed a violation and, where the Tribunal decides that the person committed a violation but considers that the amount of the penalty for the violation, if any, was not established in accordance with the regulations, the Tribunal shall correct the amount of the penalty,\nand the Tribunal shall cause a notice of any order made under this subsection to be served on the person who requested the review, and on the Minister.\n(2) [Payment] Where the Tribunal decides under subsection (1) that a person has committed a violation, the person is liable for the amount of the penalty as set out in the order of the Tribunal and, on the payment of that amount in the time and manner specified in the order,\n(a) the Minister shall accept the amount as and in complete satisfaction of the penalty; and\n(b) the proceedings commenced in respect of the violation under section 7 are ended.",
|
| 234 |
+
"history": "",
|
| 235 |
+
"last_amended": "2002-12-31",
|
| 236 |
+
"current_to": "2022-03-22",
|
| 237 |
+
"citation": "AAAMPA, s. 14",
|
| 238 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/a-8.8/section-14.html"
|
| 239 |
+
},
|
| 240 |
+
{
|
| 241 |
+
"id": "A-8.8-s15",
|
| 242 |
+
"act_code": "A-8.8",
|
| 243 |
+
"act_short": "AAAMPA",
|
| 244 |
+
"act_name": "Agriculture and Agri-Food Administrative Monetary Penalties Act",
|
| 245 |
+
"section": "15",
|
| 246 |
+
"marginal_note": "Debts to Her Majesty",
|
| 247 |
+
"part": "",
|
| 248 |
+
"division": "",
|
| 249 |
+
"heading": "Enforcement",
|
| 250 |
+
"text": "15\n(1) The following amounts constitute debts due to Her Majesty in right of Canada that may be recovered as such in the Federal Court:\n(a) the amount of a penalty, from the time the notice of violation setting out the penalty is served;\n(b) every amount undertaken to be paid pursuant to a compliance agreement entered into with the Minister under subsection 10(1), from the time the compliance agreement is entered into;\n(c) the amount set out in a notice of default referred to in subsection 10(4), from the time the notice is served;\n(d) the amount of a penalty as set out in a decision of the Minister under subsection 13(1), from the time the notice under that subsection is served;\n(e) the amount of a penalty as set out in an order of the Tribunal under subsection 14(1), from the expiration of the time specified in the order for the payment of that amount; and\n(f) the amount of any reasonable expenses incurred pursuant to section 22, from the date they are incurred.\n(2) [Time limit] No proceedings to recover a debt referred to in subsection (1) may be commenced later than five years after the debt became payable.\n(3) [Debt final] A debt referred to in subsection (1) is final and not subject to review or to be restrained, prohibited, removed, set aside or otherwise dealt with except to the extent and in the manner provided by sections 9 to 14.",
|
| 251 |
+
"history": "1995, c. 40, s. 15; 2012, c. 24, s. 101; 2015, c. 2, s. 118(F)",
|
| 252 |
+
"last_amended": "2019-01-15",
|
| 253 |
+
"current_to": "2022-03-22",
|
| 254 |
+
"citation": "AAAMPA, s. 15",
|
| 255 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/a-8.8/section-15.html"
|
| 256 |
+
},
|
| 257 |
+
{
|
| 258 |
+
"id": "A-8.8-s16",
|
| 259 |
+
"act_code": "A-8.8",
|
| 260 |
+
"act_short": "AAAMPA",
|
| 261 |
+
"act_name": "Agriculture and Agri-Food Administrative Monetary Penalties Act",
|
| 262 |
+
"section": "16",
|
| 263 |
+
"marginal_note": "Certificate of default",
|
| 264 |
+
"part": "",
|
| 265 |
+
"division": "",
|
| 266 |
+
"heading": "Enforcement",
|
| 267 |
+
"text": "16\n(1) Any debt referred to in subsection 15(1) in respect of which there is a default of payment, or the part of any such debt that has not been paid, may be certified by the Minister.\n(2) [Judgments] On production to the Federal Court, a certificate made under subsection (1) shall be registered in that Court and, when registered, has the same force and effect, and all proceedings may be taken on the certificate, as if it were a judgment obtained in that Court for a debt of the amount specified in the certificate and all reasonable costs and charges attendant in the registration of the certificate.",
|
| 268 |
+
"history": "",
|
| 269 |
+
"last_amended": "2002-12-31",
|
| 270 |
+
"current_to": "2022-03-22",
|
| 271 |
+
"citation": "AAAMPA, s. 16",
|
| 272 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/a-8.8/section-16.html"
|
| 273 |
+
},
|
| 274 |
+
{
|
| 275 |
+
"id": "A-8.8-s17",
|
| 276 |
+
"act_code": "A-8.8",
|
| 277 |
+
"act_short": "AAAMPA",
|
| 278 |
+
"act_name": "Agriculture and Agri-Food Administrative Monetary Penalties Act",
|
| 279 |
+
"section": "17",
|
| 280 |
+
"marginal_note": "Violations not offences",
|
| 281 |
+
"part": "",
|
| 282 |
+
"division": "",
|
| 283 |
+
"heading": "Rules of Law About Violations",
|
| 284 |
+
"text": "17 For greater certainty, a violation is not an offence and, accordingly, section 126 of the Criminal Code does not apply.",
|
| 285 |
+
"history": "",
|
| 286 |
+
"last_amended": "2002-12-31",
|
| 287 |
+
"current_to": "2022-03-22",
|
| 288 |
+
"citation": "AAAMPA, s. 17",
|
| 289 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/a-8.8/section-17.html"
|
| 290 |
+
},
|
| 291 |
+
{
|
| 292 |
+
"id": "A-8.8-s18",
|
| 293 |
+
"act_code": "A-8.8",
|
| 294 |
+
"act_short": "AAAMPA",
|
| 295 |
+
"act_name": "Agriculture and Agri-Food Administrative Monetary Penalties Act",
|
| 296 |
+
"section": "18",
|
| 297 |
+
"marginal_note": "Certain defences not available",
|
| 298 |
+
"part": "",
|
| 299 |
+
"division": "",
|
| 300 |
+
"heading": "Rules of Law About Violations",
|
| 301 |
+
"text": "18\n(1) A person named in a notice of violation does not have a defence by reason that the person\n(a) exercised due diligence to prevent the violation; or\n(b) reasonably and honestly believed in the existence of facts that, if true, would exonerate the person.\n(2) [Common law principles] Every rule and principle of the common law that renders any circumstance a justification or excuse in relation to a charge for an offence under an agri-food Act applies in respect of a violation to the extent that it is not inconsistent with this Act.",
|
| 302 |
+
"history": "",
|
| 303 |
+
"last_amended": "2002-12-31",
|
| 304 |
+
"current_to": "2022-03-22",
|
| 305 |
+
"citation": "AAAMPA, s. 18",
|
| 306 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/a-8.8/section-18.html"
|
| 307 |
+
},
|
| 308 |
+
{
|
| 309 |
+
"id": "A-8.8-s19",
|
| 310 |
+
"act_code": "A-8.8",
|
| 311 |
+
"act_short": "AAAMPA",
|
| 312 |
+
"act_name": "Agriculture and Agri-Food Administrative Monetary Penalties Act",
|
| 313 |
+
"section": "19",
|
| 314 |
+
"marginal_note": "Burden of proof",
|
| 315 |
+
"part": "",
|
| 316 |
+
"division": "",
|
| 317 |
+
"heading": "Rules of Law About Violations",
|
| 318 |
+
"text": "19 In every case where the facts of a violation are reviewed by the Minister or by the Tribunal, the Minister must establish, on a balance of probabilities, that the person named in the notice of violation committed the violation identified in the notice.",
|
| 319 |
+
"history": "",
|
| 320 |
+
"last_amended": "2002-12-31",
|
| 321 |
+
"current_to": "2022-03-22",
|
| 322 |
+
"citation": "AAAMPA, s. 19",
|
| 323 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/a-8.8/section-19.html"
|
| 324 |
+
},
|
| 325 |
+
{
|
| 326 |
+
"id": "A-8.8-s20",
|
| 327 |
+
"act_code": "A-8.8",
|
| 328 |
+
"act_short": "AAAMPA",
|
| 329 |
+
"act_name": "Agriculture and Agri-Food Administrative Monetary Penalties Act",
|
| 330 |
+
"section": "20",
|
| 331 |
+
"marginal_note": "Vicarious liability — licence holders, etc.",
|
| 332 |
+
"part": "",
|
| 333 |
+
"division": "",
|
| 334 |
+
"heading": "Rules of Law About Violations",
|
| 335 |
+
"text": "20\n(1) The holder of a licence, certificate, letter of accreditation, permit, notice or other document issued under an agri-food Act is liable for a violation that is committed in respect of any matter relating to any activity or requirement under that document, whether or not the person who actually committed the violation is identified or proceeded against in accordance with this Act.\n(2) [Vicarious liability — acts of employees and agents] A person is liable for a violation that is committed by any employee or agent of the person acting in the course of the employee’s employment or the scope of the agent’s authority, whether or not the employee or agent who actually committed the violation is identified or proceeded against in accordance with this Act.",
|
| 336 |
+
"history": "",
|
| 337 |
+
"last_amended": "2002-12-31",
|
| 338 |
+
"current_to": "2022-03-22",
|
| 339 |
+
"citation": "AAAMPA, s. 20",
|
| 340 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/a-8.8/section-20.html"
|
| 341 |
+
},
|
| 342 |
+
{
|
| 343 |
+
"id": "A-8.8-s21",
|
| 344 |
+
"act_code": "A-8.8",
|
| 345 |
+
"act_short": "AAAMPA",
|
| 346 |
+
"act_name": "Agriculture and Agri-Food Administrative Monetary Penalties Act",
|
| 347 |
+
"section": "21",
|
| 348 |
+
"marginal_note": "Continuing violation",
|
| 349 |
+
"part": "",
|
| 350 |
+
"division": "",
|
| 351 |
+
"heading": "Rules of Law About Violations",
|
| 352 |
+
"text": "21 A violation that is continued on more than one day constitutes a separate violation in respect of each day during which it is continued.",
|
| 353 |
+
"history": "",
|
| 354 |
+
"last_amended": "2002-12-31",
|
| 355 |
+
"current_to": "2022-03-22",
|
| 356 |
+
"citation": "AAAMPA, s. 21",
|
| 357 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/a-8.8/section-21.html"
|
| 358 |
+
},
|
| 359 |
+
{
|
| 360 |
+
"id": "A-8.8-s22",
|
| 361 |
+
"act_code": "A-8.8",
|
| 362 |
+
"act_short": "AAAMPA",
|
| 363 |
+
"act_name": "Agriculture and Agri-Food Administrative Monetary Penalties Act",
|
| 364 |
+
"section": "22",
|
| 365 |
+
"marginal_note": "Forfeiture",
|
| 366 |
+
"part": "",
|
| 367 |
+
"division": "",
|
| 368 |
+
"heading": "Rules of Law About Violations",
|
| 369 |
+
"text": "22 Where\n(a) a person is deemed by this Act to have committed a violation, or\n(b) the Minister, pursuant to a review under this Act, has decided that a person has committed a violation and no request to review the Minister’s decision has been made to the Tribunal in the prescribed time and manner,\nanything seized and detained under an agri-food Act in relation to the violation is, at the election of Her Majesty in right of Canada, immediately forfeited to Her Majesty in right of Canada and may be disposed of, at the expense of the person from whom it was seized, in accordance with the regulations made under the applicable agri-food Act unless the Minister directs otherwise.",
|
| 370 |
+
"history": "",
|
| 371 |
+
"last_amended": "2002-12-31",
|
| 372 |
+
"current_to": "2022-03-22",
|
| 373 |
+
"citation": "AAAMPA, s. 22",
|
| 374 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/a-8.8/section-22.html"
|
| 375 |
+
},
|
| 376 |
+
{
|
| 377 |
+
"id": "A-8.8-s23",
|
| 378 |
+
"act_code": "A-8.8",
|
| 379 |
+
"act_short": "AAAMPA",
|
| 380 |
+
"act_name": "Agriculture and Agri-Food Administrative Monetary Penalties Act",
|
| 381 |
+
"section": "23",
|
| 382 |
+
"marginal_note": "Notations removed",
|
| 383 |
+
"part": "",
|
| 384 |
+
"division": "",
|
| 385 |
+
"heading": "General Provisions",
|
| 386 |
+
"text": "23\n(1) Any notation of a violation shall, on application by the person who committed the violation, be removed from any records that may be kept by the Minister respecting that person after the expiration of five years from\n(a) where the notice of violation contained a warning, the date the notice was served, or\n(b) in any other case, the payment of any debt referred to in subsection 15(1),\nunless the removal from the record would not in the opinion of the Minister be in the public interest or another notation of a violation has been recorded by the Minister in respect of that person after that date and has not been removed in accordance with this subsection.\n(2) [Duty to notify] The Minister shall cause a notice of removal to be served on the person in respect of whom a notation is removed pursuant to subsection (1).",
|
| 387 |
+
"history": "",
|
| 388 |
+
"last_amended": "2002-12-31",
|
| 389 |
+
"current_to": "2022-03-22",
|
| 390 |
+
"citation": "AAAMPA, s. 23",
|
| 391 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/a-8.8/section-23.html"
|
| 392 |
+
},
|
| 393 |
+
{
|
| 394 |
+
"id": "A-8.8-s24",
|
| 395 |
+
"act_code": "A-8.8",
|
| 396 |
+
"act_short": "AAAMPA",
|
| 397 |
+
"act_name": "Agriculture and Agri-Food Administrative Monetary Penalties Act",
|
| 398 |
+
"section": "24",
|
| 399 |
+
"marginal_note": "Service of documents",
|
| 400 |
+
"part": "",
|
| 401 |
+
"division": "",
|
| 402 |
+
"heading": "General Provisions",
|
| 403 |
+
"text": "24 Every document required or authorized to be served under this Act shall be served in accordance with the regulations, either personally or in such other manner as may be authorized in the regulations.",
|
| 404 |
+
"history": "",
|
| 405 |
+
"last_amended": "2002-12-31",
|
| 406 |
+
"current_to": "2022-03-22",
|
| 407 |
+
"citation": "AAAMPA, s. 24",
|
| 408 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/a-8.8/section-24.html"
|
| 409 |
+
},
|
| 410 |
+
{
|
| 411 |
+
"id": "A-8.8-s25",
|
| 412 |
+
"act_code": "A-8.8",
|
| 413 |
+
"act_short": "AAAMPA",
|
| 414 |
+
"act_name": "Agriculture and Agri-Food Administrative Monetary Penalties Act",
|
| 415 |
+
"section": "25",
|
| 416 |
+
"marginal_note": "Evidence",
|
| 417 |
+
"part": "",
|
| 418 |
+
"division": "",
|
| 419 |
+
"heading": "General Provisions",
|
| 420 |
+
"text": "25 In any proceeding for a violation or for a prosecution for an offence, a notice of violation purporting to be issued pursuant to this Act is admissible in evidence without proof of the signature or official character of the person appearing to have signed the notice of violation.",
|
| 421 |
+
"history": "",
|
| 422 |
+
"last_amended": "2002-12-31",
|
| 423 |
+
"current_to": "2022-03-22",
|
| 424 |
+
"citation": "AAAMPA, s. 25",
|
| 425 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/a-8.8/section-25.html"
|
| 426 |
+
},
|
| 427 |
+
{
|
| 428 |
+
"id": "A-8.8-s26",
|
| 429 |
+
"act_code": "A-8.8",
|
| 430 |
+
"act_short": "AAAMPA",
|
| 431 |
+
"act_name": "Agriculture and Agri-Food Administrative Monetary Penalties Act",
|
| 432 |
+
"section": "26",
|
| 433 |
+
"marginal_note": "Limitation period",
|
| 434 |
+
"part": "",
|
| 435 |
+
"division": "",
|
| 436 |
+
"heading": "General Provisions",
|
| 437 |
+
"text": "26 No proceedings in respect of a violation may be commenced later than\n(a) six months after the day on which the subject matter of the proceedings arises, in the case of a minor violation; or\n(b) two years after the day on which the subject matter of the proceedings arises, in the case of a serious violation or a very serious violation.",
|
| 438 |
+
"history": "1995, c. 40, s. 26; 2015, c. 2, s. 119",
|
| 439 |
+
"last_amended": "2015-02-27",
|
| 440 |
+
"current_to": "2022-03-22",
|
| 441 |
+
"citation": "AAAMPA, s. 26",
|
| 442 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/a-8.8/section-26.html"
|
| 443 |
+
},
|
| 444 |
+
{
|
| 445 |
+
"id": "A-8.8-s27",
|
| 446 |
+
"act_code": "A-8.8",
|
| 447 |
+
"act_short": "AAAMPA",
|
| 448 |
+
"act_name": "Agriculture and Agri-Food Administrative Monetary Penalties Act",
|
| 449 |
+
"section": "27",
|
| 450 |
+
"marginal_note": "Review Tribunal continued",
|
| 451 |
+
"part": "",
|
| 452 |
+
"division": "",
|
| 453 |
+
"heading": "Composition",
|
| 454 |
+
"text": "27\n(1) The Review Tribunal, continued by subsection 4.1(1) of the Canada Agricultural Products Act, chapter 20 of the 4th Supplement to the Revised Statutes of Canada, 1985, is continued.\n(2) [Composition] The Tribunal consists of members to be appointed by the Governor in Council, one of whom is to be appointed as Chairperson.",
|
| 455 |
+
"history": "1995, c. 40, s. 27; 2012, c. 24, s. 102",
|
| 456 |
+
"last_amended": "2019-01-15",
|
| 457 |
+
"current_to": "2022-03-22",
|
| 458 |
+
"citation": "AAAMPA, s. 27",
|
| 459 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/a-8.8/section-27.html"
|
| 460 |
+
},
|
| 461 |
+
{
|
| 462 |
+
"id": "A-8.8-s28",
|
| 463 |
+
"act_code": "A-8.8",
|
| 464 |
+
"act_short": "AAAMPA",
|
| 465 |
+
"act_name": "Agriculture and Agri-Food Administrative Monetary Penalties Act",
|
| 466 |
+
"section": "28",
|
| 467 |
+
"marginal_note": "Qualifications",
|
| 468 |
+
"part": "",
|
| 469 |
+
"division": "",
|
| 470 |
+
"heading": "Composition",
|
| 471 |
+
"text": "28 A person is not eligible to be appointed as a member unless the person is knowledgeable about or has experience related to agriculture or agri-food and the Chairperson and at least one other member must, in addition, be a lawyer of at least ten years’ standing at the bar of any province or a notary of at least ten years’ standing at the Chambre des notaires du Québec.",
|
| 472 |
+
"history": "1995, c. 40, s. 28; 2012, c. 24, s. 102",
|
| 473 |
+
"last_amended": "2019-01-15",
|
| 474 |
+
"current_to": "2022-03-22",
|
| 475 |
+
"citation": "AAAMPA, s. 28",
|
| 476 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/a-8.8/section-28.html"
|
| 477 |
+
},
|
| 478 |
+
{
|
| 479 |
+
"id": "A-8.8-s29",
|
| 480 |
+
"act_code": "A-8.8",
|
| 481 |
+
"act_short": "AAAMPA",
|
| 482 |
+
"act_name": "Agriculture and Agri-Food Administrative Monetary Penalties Act",
|
| 483 |
+
"section": "29",
|
| 484 |
+
"marginal_note": "Membership",
|
| 485 |
+
"part": "",
|
| 486 |
+
"division": "",
|
| 487 |
+
"heading": "Composition",
|
| 488 |
+
"text": "29 The Chairperson is to be appointed as a full-time member and the other members are to be appointed as either full-time members or part-time members.",
|
| 489 |
+
"history": "1995, c. 40, s. 29; 2012, c. 24, s. 102",
|
| 490 |
+
"last_amended": "2019-01-15",
|
| 491 |
+
"current_to": "2022-03-22",
|
| 492 |
+
"citation": "AAAMPA, s. 29",
|
| 493 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/a-8.8/section-29.html"
|
| 494 |
+
},
|
| 495 |
+
{
|
| 496 |
+
"id": "A-8.8-s30",
|
| 497 |
+
"act_code": "A-8.8",
|
| 498 |
+
"act_short": "AAAMPA",
|
| 499 |
+
"act_name": "Agriculture and Agri-Food Administrative Monetary Penalties Act",
|
| 500 |
+
"section": "30",
|
| 501 |
+
"marginal_note": "Tenure",
|
| 502 |
+
"part": "",
|
| 503 |
+
"division": "",
|
| 504 |
+
"heading": "Composition",
|
| 505 |
+
"text": "30\n(1) Each member is to be appointed for a term of not more than five years and holds office during good behaviour, but may be removed by the Governor in Council for cause.\n(2) [Re-appointment] Each member may be re-appointed as a member in the same or another capacity.",
|
| 506 |
+
"history": "1995, c. 40, s. 30; 2012, c. 24, s. 102",
|
| 507 |
+
"last_amended": "2019-01-15",
|
| 508 |
+
"current_to": "2022-03-22",
|
| 509 |
+
"citation": "AAAMPA, s. 30",
|
| 510 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/a-8.8/section-30.html"
|
| 511 |
+
},
|
| 512 |
+
{
|
| 513 |
+
"id": "A-8.8-s31",
|
| 514 |
+
"act_code": "A-8.8",
|
| 515 |
+
"act_short": "AAAMPA",
|
| 516 |
+
"act_name": "Agriculture and Agri-Food Administrative Monetary Penalties Act",
|
| 517 |
+
"section": "31",
|
| 518 |
+
"marginal_note": "No other federal public administration",
|
| 519 |
+
"part": "",
|
| 520 |
+
"division": "",
|
| 521 |
+
"heading": "Composition",
|
| 522 |
+
"text": "31 A member must not hold any other office in the federal public administration.",
|
| 523 |
+
"history": "1995, c. 40, s. 31; 2012, c. 24, s. 102",
|
| 524 |
+
"last_amended": "2019-01-15",
|
| 525 |
+
"current_to": "2022-03-22",
|
| 526 |
+
"citation": "AAAMPA, s. 31",
|
| 527 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/a-8.8/section-31.html"
|
| 528 |
+
},
|
| 529 |
+
{
|
| 530 |
+
"id": "A-8.8-s32",
|
| 531 |
+
"act_code": "A-8.8",
|
| 532 |
+
"act_short": "AAAMPA",
|
| 533 |
+
"act_name": "Agriculture and Agri-Food Administrative Monetary Penalties Act",
|
| 534 |
+
"section": "32",
|
| 535 |
+
"marginal_note": "Conflict of interest",
|
| 536 |
+
"part": "",
|
| 537 |
+
"division": "",
|
| 538 |
+
"heading": "Composition",
|
| 539 |
+
"text": "32 A member must not accept or hold any office or employment that is inconsistent with the member’s duties or take part in any matter before the Tribunal in which the member has an interest.",
|
| 540 |
+
"history": "1995, c. 40, s. 32; 2012, c. 24, s. 102",
|
| 541 |
+
"last_amended": "2019-01-15",
|
| 542 |
+
"current_to": "2022-03-22",
|
| 543 |
+
"citation": "AAAMPA, s. 32",
|
| 544 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/a-8.8/section-32.html"
|
| 545 |
+
},
|
| 546 |
+
{
|
| 547 |
+
"id": "A-8.8-s33",
|
| 548 |
+
"act_code": "A-8.8",
|
| 549 |
+
"act_short": "AAAMPA",
|
| 550 |
+
"act_name": "Agriculture and Agri-Food Administrative Monetary Penalties Act",
|
| 551 |
+
"section": "33",
|
| 552 |
+
"marginal_note": "Duties of Chairperson",
|
| 553 |
+
"part": "",
|
| 554 |
+
"division": "",
|
| 555 |
+
"heading": "Chairperson",
|
| 556 |
+
"text": "33\n(1) The Chairperson apportions work among the Tribunal’s members.\n(2) [Absence or incapacity of Chairperson] If the Chairperson is absent or unable to act or the Chairperson’s position becomes vacant, the members must designate a member with the legal qualifications described in section 28 to act as Chairperson pending the appointment of a replacement, but no person may so act for a period exceeding 60 days without the approval of the Governor in Council.",
|
| 557 |
+
"history": "1995, c. 40, s. 33; 2012, c. 24, s. 102; 2014, c. 20, s. 480",
|
| 558 |
+
"last_amended": "2019-01-15",
|
| 559 |
+
"current_to": "2022-03-22",
|
| 560 |
+
"citation": "AAAMPA, s. 33",
|
| 561 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/a-8.8/section-33.html"
|
| 562 |
+
},
|
| 563 |
+
{
|
| 564 |
+
"id": "A-8.8-s34",
|
| 565 |
+
"act_code": "A-8.8",
|
| 566 |
+
"act_short": "AAAMPA",
|
| 567 |
+
"act_name": "Agriculture and Agri-Food Administrative Monetary Penalties Act",
|
| 568 |
+
"section": "34",
|
| 569 |
+
"marginal_note": "Remuneration",
|
| 570 |
+
"part": "",
|
| 571 |
+
"division": "",
|
| 572 |
+
"heading": "Remuneration and Expenses",
|
| 573 |
+
"text": "34\n(1) Each full-time member is to be paid the salary that is fixed by the Governor in Council and each part-time member is entitled to be paid the fees or other remuneration that is fixed by the Governor in Council.\n(2) [Travel and living expenses] Members are entitled to be paid, in accordance with Treasury Board directives, reasonable travel and living expenses incurred in the performance of their duties and functions while absent from their ordinary place of work, in the case of full-time members, or from their ordinary place of residence, in the case of part-time members.",
|
| 574 |
+
"history": "1995, c. 40, s. 34; 2012, c. 24, s. 102",
|
| 575 |
+
"last_amended": "2019-01-15",
|
| 576 |
+
"current_to": "2022-03-22",
|
| 577 |
+
"citation": "AAAMPA, s. 34",
|
| 578 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/a-8.8/section-34.html"
|
| 579 |
+
},
|
| 580 |
+
{
|
| 581 |
+
"id": "A-8.8-s35",
|
| 582 |
+
"act_code": "A-8.8",
|
| 583 |
+
"act_short": "AAAMPA",
|
| 584 |
+
"act_name": "Agriculture and Agri-Food Administrative Monetary Penalties Act",
|
| 585 |
+
"section": "35",
|
| 586 |
+
"marginal_note": "",
|
| 587 |
+
"part": "",
|
| 588 |
+
"division": "",
|
| 589 |
+
"heading": "Remuneration and Expenses",
|
| 590 |
+
"text": "35 [Repealed, 2014, c. 20, s. 480]",
|
| 591 |
+
"history": "",
|
| 592 |
+
"last_amended": "2019-01-15",
|
| 593 |
+
"current_to": "2022-03-22",
|
| 594 |
+
"citation": "AAAMPA, s. 35",
|
| 595 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/a-8.8/section-35.html"
|
| 596 |
+
},
|
| 597 |
+
{
|
| 598 |
+
"id": "A-8.8-s36",
|
| 599 |
+
"act_code": "A-8.8",
|
| 600 |
+
"act_short": "AAAMPA",
|
| 601 |
+
"act_name": "Agriculture and Agri-Food Administrative Monetary Penalties Act",
|
| 602 |
+
"section": "36",
|
| 603 |
+
"marginal_note": "",
|
| 604 |
+
"part": "",
|
| 605 |
+
"division": "",
|
| 606 |
+
"heading": "Remuneration and Expenses",
|
| 607 |
+
"text": "36 [Repealed, 2014, c. 20, s. 480]",
|
| 608 |
+
"history": "",
|
| 609 |
+
"last_amended": "2019-01-15",
|
| 610 |
+
"current_to": "2022-03-22",
|
| 611 |
+
"citation": "AAAMPA, s. 36",
|
| 612 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/a-8.8/section-36.html"
|
| 613 |
+
},
|
| 614 |
+
{
|
| 615 |
+
"id": "A-8.8-s37",
|
| 616 |
+
"act_code": "A-8.8",
|
| 617 |
+
"act_short": "AAAMPA",
|
| 618 |
+
"act_name": "Agriculture and Agri-Food Administrative Monetary Penalties Act",
|
| 619 |
+
"section": "37",
|
| 620 |
+
"marginal_note": "Head office",
|
| 621 |
+
"part": "",
|
| 622 |
+
"division": "",
|
| 623 |
+
"heading": "Head Office",
|
| 624 |
+
"text": "37\n(1) The head office of the Tribunal is to be in the National Capital Region as defined in section 2 of the National Capital Act.\n(2) [Sittings] The Tribunal is to sit at the places in Canada that may be specified by the Governor in Council.",
|
| 625 |
+
"history": "1995, c. 40, s. 37; 2012, c. 24, s. 102",
|
| 626 |
+
"last_amended": "2019-01-15",
|
| 627 |
+
"current_to": "2022-03-22",
|
| 628 |
+
"citation": "AAAMPA, s. 37",
|
| 629 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/a-8.8/section-37.html"
|
| 630 |
+
},
|
| 631 |
+
{
|
| 632 |
+
"id": "A-8.8-s38",
|
| 633 |
+
"act_code": "A-8.8",
|
| 634 |
+
"act_short": "AAAMPA",
|
| 635 |
+
"act_name": "Agriculture and Agri-Food Administrative Monetary Penalties Act",
|
| 636 |
+
"section": "38",
|
| 637 |
+
"marginal_note": "Tribunal",
|
| 638 |
+
"part": "",
|
| 639 |
+
"division": "",
|
| 640 |
+
"heading": "Jurisdiction",
|
| 641 |
+
"text": "38\n(1) The Tribunal has sole and exclusive jurisdiction to hear and determine all questions of fact or law in relation to any matter over which it is given jurisdiction under this Act or any other Act of Parliament.\n(2) [Review by Federal Court] An order of the Tribunal may only be reviewed under the Federal Courts Act.",
|
| 642 |
+
"history": "1995, c. 40, s. 38; 2012, c. 24, s. 102",
|
| 643 |
+
"last_amended": "2019-01-15",
|
| 644 |
+
"current_to": "2022-03-22",
|
| 645 |
+
"citation": "AAAMPA, s. 38",
|
| 646 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/a-8.8/section-38.html"
|
| 647 |
+
},
|
| 648 |
+
{
|
| 649 |
+
"id": "A-8.8-s39",
|
| 650 |
+
"act_code": "A-8.8",
|
| 651 |
+
"act_short": "AAAMPA",
|
| 652 |
+
"act_name": "Agriculture and Agri-Food Administrative Monetary Penalties Act",
|
| 653 |
+
"section": "39",
|
| 654 |
+
"marginal_note": "Chairperson",
|
| 655 |
+
"part": "",
|
| 656 |
+
"division": "",
|
| 657 |
+
"heading": "Jurisdiction",
|
| 658 |
+
"text": "39\n(1) The jurisdiction of the Tribunal in relation to the following matters is to be exercised by the Chairperson:\n(a) requests under subsection 8(1) or 12(2) for a review in respect of a notice of violation that contains a warning; and\n(b) requests under paragraph 9(2)(c) or 13(2)(b) for a review in respect of a notice of violation that sets out a penalty of less than $2,000.\n(2) [Other legally qualified members] The jurisdiction of the Tribunal in relation to a matter referred to in subsection (1) may be exercised, if the Chairperson so directs, by any member of the Tribunal with the legal qualifications described in section 28.",
|
| 659 |
+
"history": "1995, c. 40, s. 39; 2012, c. 24, s. 102",
|
| 660 |
+
"last_amended": "2019-01-15",
|
| 661 |
+
"current_to": "2022-03-22",
|
| 662 |
+
"citation": "AAAMPA, s. 39",
|
| 663 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/a-8.8/section-39.html"
|
| 664 |
+
},
|
| 665 |
+
{
|
| 666 |
+
"id": "A-8.8-s40",
|
| 667 |
+
"act_code": "A-8.8",
|
| 668 |
+
"act_short": "AAAMPA",
|
| 669 |
+
"act_name": "Agriculture and Agri-Food Administrative Monetary Penalties Act",
|
| 670 |
+
"section": "40",
|
| 671 |
+
"marginal_note": "Reviews",
|
| 672 |
+
"part": "",
|
| 673 |
+
"division": "",
|
| 674 |
+
"heading": "Jurisdiction",
|
| 675 |
+
"text": "40 Reviews by the Tribunal are to be heard by a single member.",
|
| 676 |
+
"history": "1995, c. 40, s. 40; 2012, c. 24, s. 102",
|
| 677 |
+
"last_amended": "2019-01-15",
|
| 678 |
+
"current_to": "2022-03-22",
|
| 679 |
+
"citation": "AAAMPA, s. 40",
|
| 680 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/a-8.8/section-40.html"
|
| 681 |
+
},
|
| 682 |
+
{
|
| 683 |
+
"id": "A-8.8-s41",
|
| 684 |
+
"act_code": "A-8.8",
|
| 685 |
+
"act_short": "AAAMPA",
|
| 686 |
+
"act_name": "Agriculture and Agri-Food Administrative Monetary Penalties Act",
|
| 687 |
+
"section": "41",
|
| 688 |
+
"marginal_note": "Court of record",
|
| 689 |
+
"part": "",
|
| 690 |
+
"division": "",
|
| 691 |
+
"heading": "Powers",
|
| 692 |
+
"text": "41\n(1) The Tribunal is a court of record with an official seal that must be judicially noticed.\n(2) [Examination of witnesses, etc.] In addition to the powers conferred by subsection (1), the Tribunal has, with respect to the appearance, swearing and examination of witnesses, the production and inspection of documents and other things, the enforcement of its orders and other matters necessary or proper for the due exercise of its jurisdiction, all the powers, rights and privileges that are vested in a superior court of record and, without limiting the generality of the foregoing, it may\n(a) issue a summons requiring a person\n(i) to appear at the time and place stated in the summons to testify to all matters within the person’s knowledge relative to any subject matter before the Tribunal, and\n(ii) to bring and produce any document, book or paper in the person’s possession or under the person’s control relative to that subject matter;\n(b) administer oaths and examine any person on oath; and\n(c) during a hearing, receive any evidence that it considers relevant and trustworthy.",
|
| 693 |
+
"history": "1995, c. 40, s. 41; 2012, c. 24, s. 102",
|
| 694 |
+
"last_amended": "2019-01-15",
|
| 695 |
+
"current_to": "2022-03-22",
|
| 696 |
+
"citation": "AAAMPA, s. 41",
|
| 697 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/a-8.8/section-41.html"
|
| 698 |
+
},
|
| 699 |
+
{
|
| 700 |
+
"id": "A-8.8-s42",
|
| 701 |
+
"act_code": "A-8.8",
|
| 702 |
+
"act_short": "AAAMPA",
|
| 703 |
+
"act_name": "Agriculture and Agri-Food Administrative Monetary Penalties Act",
|
| 704 |
+
"section": "42",
|
| 705 |
+
"marginal_note": "Rules",
|
| 706 |
+
"part": "",
|
| 707 |
+
"division": "",
|
| 708 |
+
"heading": "Rules",
|
| 709 |
+
"text": "42 The Tribunal may, with the approval of the Governor in Council, make rules governing\n(a) the practice and procedure in respect of hearings;\n(b) the time and manner in which applications and notices must be made or given; and\n(c) the work of the Tribunal under this or any other Act of Parliament.",
|
| 710 |
+
"history": "1995, c. 40, s. 42; 2012, c. 24, s. 102",
|
| 711 |
+
"last_amended": "2019-01-15",
|
| 712 |
+
"current_to": "2022-03-22",
|
| 713 |
+
"citation": "AAAMPA, s. 42",
|
| 714 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/a-8.8/section-42.html"
|
| 715 |
+
},
|
| 716 |
+
{
|
| 717 |
+
"id": "A-8.8-s43",
|
| 718 |
+
"act_code": "A-8.8",
|
| 719 |
+
"act_short": "AAAMPA",
|
| 720 |
+
"act_name": "Agriculture and Agri-Food Administrative Monetary Penalties Act",
|
| 721 |
+
"section": "43",
|
| 722 |
+
"marginal_note": "Consultations",
|
| 723 |
+
"part": "",
|
| 724 |
+
"division": "",
|
| 725 |
+
"heading": "General",
|
| 726 |
+
"text": "43 The members of the Tribunal may consult with other members of the Tribunal in respect of any matter before it.",
|
| 727 |
+
"history": "1995, c. 40, s. 43; 2012, c. 24, s. 102",
|
| 728 |
+
"last_amended": "2019-01-15",
|
| 729 |
+
"current_to": "2022-03-22",
|
| 730 |
+
"citation": "AAAMPA, s. 43",
|
| 731 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/a-8.8/section-43.html"
|
| 732 |
+
},
|
| 733 |
+
{
|
| 734 |
+
"id": "A-8.8-s44",
|
| 735 |
+
"act_code": "A-8.8",
|
| 736 |
+
"act_short": "AAAMPA",
|
| 737 |
+
"act_name": "Agriculture and Agri-Food Administrative Monetary Penalties Act",
|
| 738 |
+
"section": "44",
|
| 739 |
+
"marginal_note": "Rules of evidence",
|
| 740 |
+
"part": "",
|
| 741 |
+
"division": "",
|
| 742 |
+
"heading": "General",
|
| 743 |
+
"text": "44 The Tribunal is not bound by any legal or technical rules of evidence in conducting any matter that comes before it. It must deal with matters that come before it as informally and expeditiously as the circumstances and considerations of fairness and natural justice permit.",
|
| 744 |
+
"history": "1995, c. 40, s. 44; 2012, c. 24, s. 102",
|
| 745 |
+
"last_amended": "2019-01-15",
|
| 746 |
+
"current_to": "2022-03-22",
|
| 747 |
+
"citation": "AAAMPA, s. 44",
|
| 748 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/a-8.8/section-44.html"
|
| 749 |
+
},
|
| 750 |
+
{
|
| 751 |
+
"id": "A-8.8-s45",
|
| 752 |
+
"act_code": "A-8.8",
|
| 753 |
+
"act_short": "AAAMPA",
|
| 754 |
+
"act_name": "Agriculture and Agri-Food Administrative Monetary Penalties Act",
|
| 755 |
+
"section": "45",
|
| 756 |
+
"marginal_note": "Privileged evidence not receivable",
|
| 757 |
+
"part": "",
|
| 758 |
+
"division": "",
|
| 759 |
+
"heading": "General",
|
| 760 |
+
"text": "45 The Tribunal is not entitled to receive or accept as evidence anything that would be inadmissible in a court by reason of any privilege under the law of evidence.",
|
| 761 |
+
"history": "1995, c. 40, s. 45; 2012, c. 24, s. 102",
|
| 762 |
+
"last_amended": "2019-01-15",
|
| 763 |
+
"current_to": "2022-03-22",
|
| 764 |
+
"citation": "AAAMPA, s. 45",
|
| 765 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/a-8.8/section-45.html"
|
| 766 |
+
},
|
| 767 |
+
{
|
| 768 |
+
"id": "A-8.8-s46 to 89",
|
| 769 |
+
"act_code": "A-8.8",
|
| 770 |
+
"act_short": "AAAMPA",
|
| 771 |
+
"act_name": "Agriculture and Agri-Food Administrative Monetary Penalties Act",
|
| 772 |
+
"section": "46 to 89",
|
| 773 |
+
"marginal_note": "",
|
| 774 |
+
"part": "",
|
| 775 |
+
"division": "",
|
| 776 |
+
"heading": "General",
|
| 777 |
+
"text": "46 to 89 [Repealed, 2012, c. 24, s. 102]",
|
| 778 |
+
"history": "",
|
| 779 |
+
"last_amended": "2019-01-15",
|
| 780 |
+
"current_to": "2022-03-22",
|
| 781 |
+
"citation": "AAAMPA, s. 46 to 89",
|
| 782 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/a-8.8/section-46 to 89.html"
|
| 783 |
+
},
|
| 784 |
+
{
|
| 785 |
+
"id": "A-8.8-s90",
|
| 786 |
+
"act_code": "A-8.8",
|
| 787 |
+
"act_short": "AAAMPA",
|
| 788 |
+
"act_name": "Agriculture and Agri-Food Administrative Monetary Penalties Act",
|
| 789 |
+
"section": "90",
|
| 790 |
+
"marginal_note": "",
|
| 791 |
+
"part": "",
|
| 792 |
+
"division": "",
|
| 793 |
+
"heading": "General",
|
| 794 |
+
"text": "90 [Repealed, 2012, c. 24, s. 102]",
|
| 795 |
+
"history": "",
|
| 796 |
+
"last_amended": "2019-01-15",
|
| 797 |
+
"current_to": "2022-03-22",
|
| 798 |
+
"citation": "AAAMPA, s. 90",
|
| 799 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/a-8.8/section-90.html"
|
| 800 |
+
}
|
| 801 |
+
]
|
data/processed/C-24.5.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/processed/C-38.8.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/processed/C-46.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/processed/C-52.6.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/processed/C-54.011.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/processed/C.R.C.,_c._1041.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/processed/C.R.C.,_c._296.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/processed/C.R.C.,_c._870.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/processed/F-27.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/processed/H-3.3.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/processed/I-2.5.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/processed/L-2.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/processed/P-14.8.json
ADDED
|
@@ -0,0 +1,1192 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"id": "P-14.8-s1",
|
| 4 |
+
"act_code": "P-14.8",
|
| 5 |
+
"act_short": "Plant Protection Act",
|
| 6 |
+
"act_name": "Plant Protection Act",
|
| 7 |
+
"section": "1",
|
| 8 |
+
"marginal_note": "Short title",
|
| 9 |
+
"part": "",
|
| 10 |
+
"division": "",
|
| 11 |
+
"heading": "Short Title",
|
| 12 |
+
"text": "1 This Act may be cited as the Plant Protection Act.",
|
| 13 |
+
"history": "",
|
| 14 |
+
"last_amended": "2002-12-31",
|
| 15 |
+
"current_to": "2019-06-21",
|
| 16 |
+
"citation": "Plant Protection Act, s. 1",
|
| 17 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-1.html"
|
| 18 |
+
},
|
| 19 |
+
{
|
| 20 |
+
"id": "P-14.8-s2",
|
| 21 |
+
"act_code": "P-14.8",
|
| 22 |
+
"act_short": "Plant Protection Act",
|
| 23 |
+
"act_name": "Plant Protection Act",
|
| 24 |
+
"section": "2",
|
| 25 |
+
"marginal_note": "Purpose of the Act",
|
| 26 |
+
"part": "",
|
| 27 |
+
"division": "",
|
| 28 |
+
"heading": "Purpose",
|
| 29 |
+
"text": "2 The purpose of this Act is to protect plant life and the agricultural and forestry sectors of the Canadian economy by preventing the importation, exportation and spread of pests and by controlling or eradicating pests in Canada.",
|
| 30 |
+
"history": "",
|
| 31 |
+
"last_amended": "2002-12-31",
|
| 32 |
+
"current_to": "2019-06-21",
|
| 33 |
+
"citation": "Plant Protection Act, s. 2",
|
| 34 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-2.html"
|
| 35 |
+
},
|
| 36 |
+
{
|
| 37 |
+
"id": "P-14.8-s3",
|
| 38 |
+
"act_code": "P-14.8",
|
| 39 |
+
"act_short": "Plant Protection Act",
|
| 40 |
+
"act_name": "Plant Protection Act",
|
| 41 |
+
"section": "3",
|
| 42 |
+
"marginal_note": "Definitions",
|
| 43 |
+
"part": "",
|
| 44 |
+
"division": "",
|
| 45 |
+
"heading": "Interpretation",
|
| 46 |
+
"text": "3 In this Act,\nAssessor means the Assessor or any Deputy Assessor appointed under Part II of the Pesticide Residue Compensation Act; (évaluateur)\nconveyance means any aircraft, carriage, motor vehicle, trailer, railway car, vessel, cargo container or other contrivance used to move persons or things; (véhicule)\ndispose includes destroy; (Version anglaise seulement)\ndocument means anything on which information that is capable of being understood by a person, or read by a computer or other device, is recorded or marked; (document)\ninspector means a person designated as an inspector pursuant to section 21; (inspecteur)\njustice means a justice as defined in section 2 of the Criminal Code; (juge de paix)\nMinister means the Minister of Agriculture and Agri-Food; (ministre)\npeace officer means a peace officer as defined in section 2 of the Criminal Code; (agent de la paix)\npenalty means an administrative monetary penalty imposed under the Agriculture and Agri-Food Administrative Monetary Penalties Act for a violation; (sanction)\npest means any thing that is injurious or potentially injurious, whether directly or indirectly, to plants or to products or by-products of plants; (parasite)\nplace includes a conveyance; (lieu)\nplant includes a part of a plant; (végétal)\nprescribed means prescribed by regulation; (Version anglaise seulement)\nthing includes a plant and a pest; (choses)\nTribunal means the Review Tribunal continued by subsection 27(1) of the Agriculture and Agri-Food Administrative Monetary Penalties Act; (Commission)\nviolation means any of the following that may be proceeded with in accordance with the Agriculture and Agri-Food Administrative Monetary Penalties Act:\n(a) any contravention of any provision of this Act or of a regulation made under this Act,\n(b) any contravention of any order made by the Minister under this Act, and\n(c) any refusal or neglect to perform any duty imposed by or under this Act. (violation)",
|
| 47 |
+
"history": "1990, c. 22, s. 3; 1994, c. 38, s. 25; 1995, c. 40, s. 75; 1997, c. 6, s. 81; 2001, c. 4, s. 173(F); 2012, c. 24, s. 95; 2015, c. 2, s. 99",
|
| 48 |
+
"last_amended": "2019-01-15",
|
| 49 |
+
"current_to": "2019-06-21",
|
| 50 |
+
"citation": "Plant Protection Act, s. 3",
|
| 51 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-3.html"
|
| 52 |
+
},
|
| 53 |
+
{
|
| 54 |
+
"id": "P-14.8-s4",
|
| 55 |
+
"act_code": "P-14.8",
|
| 56 |
+
"act_short": "Plant Protection Act",
|
| 57 |
+
"act_name": "Plant Protection Act",
|
| 58 |
+
"section": "4",
|
| 59 |
+
"marginal_note": "Binding on Her Majesty",
|
| 60 |
+
"part": "",
|
| 61 |
+
"division": "",
|
| 62 |
+
"heading": "Her Majesty",
|
| 63 |
+
"text": "4 This Act is binding on Her Majesty in right of Canada or a province.",
|
| 64 |
+
"history": "",
|
| 65 |
+
"last_amended": "2002-12-31",
|
| 66 |
+
"current_to": "2019-06-21",
|
| 67 |
+
"citation": "Plant Protection Act, s. 4",
|
| 68 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-4.html"
|
| 69 |
+
},
|
| 70 |
+
{
|
| 71 |
+
"id": "P-14.8-s5",
|
| 72 |
+
"act_code": "P-14.8",
|
| 73 |
+
"act_short": "Plant Protection Act",
|
| 74 |
+
"act_name": "Plant Protection Act",
|
| 75 |
+
"section": "5",
|
| 76 |
+
"marginal_note": "Duty to notify Minister",
|
| 77 |
+
"part": "",
|
| 78 |
+
"division": "",
|
| 79 |
+
"heading": "General",
|
| 80 |
+
"text": "5 Where a person becomes aware of the existence of a thing that the person suspects to be a pest in an area where the pest has not previously been known to exist, the person shall immediately notify the Minister of the suspected pest and provide the Minister with a specimen of it.",
|
| 81 |
+
"history": "",
|
| 82 |
+
"last_amended": "2002-12-31",
|
| 83 |
+
"current_to": "2019-06-21",
|
| 84 |
+
"citation": "Plant Protection Act, s. 5",
|
| 85 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-5.html"
|
| 86 |
+
},
|
| 87 |
+
{
|
| 88 |
+
"id": "P-14.8-s6",
|
| 89 |
+
"act_code": "P-14.8",
|
| 90 |
+
"act_short": "Plant Protection Act",
|
| 91 |
+
"act_name": "Plant Protection Act",
|
| 92 |
+
"section": "6",
|
| 93 |
+
"marginal_note": "Prohibition",
|
| 94 |
+
"part": "",
|
| 95 |
+
"division": "",
|
| 96 |
+
"heading": "General",
|
| 97 |
+
"text": "6\n(1) Except as permitted under this Act or the regulations, no person shall move, grow, raise, culture or produce any thing that there are reasonable grounds to believe is a pest, that is or could be infested with a pest or that constitutes or could constitute a biological obstacle to the control of a pest.\n(2) [Prohibition of movement] Where an inspector believes on reasonable grounds that a thing is a pest, is or could be infested with a pest or constitutes or could constitute a biological obstacle to the control of a pest, the inspector may prohibit the owner of the thing or the person having the possession, care or control of it from moving it without the written authorization of an inspector.\n(3) [Notice] A prohibition under subsection (2) shall be communicated by personal delivery of a notice to the owner or person having the possession, care or control, or by sending the notice to the owner or person.",
|
| 98 |
+
"history": "1990, c. 22, s. 6; 2015, c. 3, s. 142(F)",
|
| 99 |
+
"last_amended": "2015-02-26",
|
| 100 |
+
"current_to": "2019-06-21",
|
| 101 |
+
"citation": "Plant Protection Act, s. 6",
|
| 102 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-6.html"
|
| 103 |
+
},
|
| 104 |
+
{
|
| 105 |
+
"id": "P-14.8-s6.1",
|
| 106 |
+
"act_code": "P-14.8",
|
| 107 |
+
"act_short": "Plant Protection Act",
|
| 108 |
+
"act_name": "Plant Protection Act",
|
| 109 |
+
"section": "6.1",
|
| 110 |
+
"marginal_note": "Recall order — Canadian Food Inspection Agency Act",
|
| 111 |
+
"part": "",
|
| 112 |
+
"division": "",
|
| 113 |
+
"heading": "General",
|
| 114 |
+
"text": "6.1 No person shall sell a thing regulated under this Act that is the subject of a recall order referred to in subsection 19(1) of the Canadian Food Inspection Agency Act.",
|
| 115 |
+
"history": "2015, c. 2, s. 100",
|
| 116 |
+
"last_amended": "2015-02-27",
|
| 117 |
+
"current_to": "2019-06-21",
|
| 118 |
+
"citation": "Plant Protection Act, s. 6.1",
|
| 119 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-6.1.html"
|
| 120 |
+
},
|
| 121 |
+
{
|
| 122 |
+
"id": "P-14.8-s7",
|
| 123 |
+
"act_code": "P-14.8",
|
| 124 |
+
"act_short": "Plant Protection Act",
|
| 125 |
+
"act_name": "Plant Protection Act",
|
| 126 |
+
"section": "7",
|
| 127 |
+
"marginal_note": "Prohibition",
|
| 128 |
+
"part": "",
|
| 129 |
+
"division": "",
|
| 130 |
+
"heading": "Importation and Exportation",
|
| 131 |
+
"text": "7 No person shall import or admit into Canada or export from Canada any thing that is a pest, that is or could be infested with a pest or that constitutes or could constitute a biological obstacle to the control of a pest, unless\n(a) the person has produced to an inspector all permits, certificates and other documentation required by the regulations;\n(b) the thing is or has been presented to an inspector — if required by the regulations or an inspector — in the manner and under the conditions specified by the inspector and at a place designated by the regulations or an inspector; and\n(c) the thing is imported or exported in accordance with any other requirements of the regulations.",
|
| 132 |
+
"history": "1990, c. 22, s. 7; 2015, c. 2, s. 101",
|
| 133 |
+
"last_amended": "2015-02-27",
|
| 134 |
+
"current_to": "2019-06-21",
|
| 135 |
+
"citation": "Plant Protection Act, s. 7",
|
| 136 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-7.html"
|
| 137 |
+
},
|
| 138 |
+
{
|
| 139 |
+
"id": "P-14.8-s8",
|
| 140 |
+
"act_code": "P-14.8",
|
| 141 |
+
"act_short": "Plant Protection Act",
|
| 142 |
+
"act_name": "Plant Protection Act",
|
| 143 |
+
"section": "8",
|
| 144 |
+
"marginal_note": "Removal or destruction of unlawful imports",
|
| 145 |
+
"part": "",
|
| 146 |
+
"division": "",
|
| 147 |
+
"heading": "Importation and Exportation",
|
| 148 |
+
"text": "8\n(1) An inspector who has reasonable grounds to believe that an imported thing has been imported in contravention of a provision of this Act or the regulations, is a pest, is or could be infested with a pest or constitutes or could constitute a biological obstacle to the control of a pest or that a requirement imposed by or under the regulations in respect of an imported thing has not been met may, by notice, whether the thing is seized or not, order its owner or importer or the person having possession, care or control of it to remove it from Canada or, if removal is not possible, to destroy it.\n(2) [Notice] The notice must either be delivered personally to the owner or importer of the thing or to the person having possession, care or control of it or be sent by registered mail to the owner’s, importer’s or person’s address in Canada.\n(3) [Forfeiture] If the thing is not removed from Canada, or destroyed, within the period specified in the notice — or, if no period was specified, within 90 days after the day on which the notice was delivered or sent — it is, despite subsection 32(1), forfeited to Her Majesty in right of Canada and may be disposed of as the Minister may direct.\n(4) [Suspension of application of subsection (3)] An inspector may, for a period that he or she specifies, suspend the application of subsection (3) if he or she is satisfied that\n(a) harm to human, animal or plant health or the environment is unlikely to result;\n(b) the thing will not be sold within that period;\n(c) the measures that should have been taken for the thing not to have been imported in contravention of a provision of this Act or the regulations will be taken within that period; and\n(d) if the thing does not meet the requirements of the regulations, it will be brought into compliance with the regulations within that period.\n(5) [Cancellation] An inspector may cancel the notice if he or she is satisfied that\n(a) harm to human, animal or plant health or the environment is unlikely to result;\n(b) the thing has not been sold within the period referred to in subsection (6);\n(c) the measures referred to in paragraph (4)(c) were taken within that period; and\n(d) if the thing did not meet the requirements of the regulations when it was imported, it was brought into compliance with the regulations within that period.\n(6) [Period] The period for the purposes of subsection (5) is\n(a) if the application of subsection (3) was suspended under subsection (4), the period of the suspension; and\n(b) if the application of subsection (3) was not suspended, the period specified in the notice or, if no period was specified, the period that ends 90 days after the day on which the notice was delivered or sent.",
|
| 149 |
+
"history": "1990, c. 22, s. 8; 2015, c. 2, s. 101",
|
| 150 |
+
"last_amended": "2015-02-27",
|
| 151 |
+
"current_to": "2019-06-21",
|
| 152 |
+
"citation": "Plant Protection Act, s. 8",
|
| 153 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-8.html"
|
| 154 |
+
},
|
| 155 |
+
{
|
| 156 |
+
"id": "P-14.8-s9",
|
| 157 |
+
"act_code": "P-14.8",
|
| 158 |
+
"act_short": "Plant Protection Act",
|
| 159 |
+
"act_name": "Plant Protection Act",
|
| 160 |
+
"section": "9",
|
| 161 |
+
"marginal_note": "Prohibition of possession or disposition",
|
| 162 |
+
"part": "",
|
| 163 |
+
"division": "",
|
| 164 |
+
"heading": "Importation and Exportation",
|
| 165 |
+
"text": "9\n(1) No person shall possess or dispose of a thing that the person knows was imported in contravention of this Act or the regulations.\n(2) [Presumption] In any prosecution for an offence under subsection (1), an accused who is found to have been in possession of a thing that was imported in contravention of this Act or the regulations shall be considered, in the absence of evidence to the contrary, to have known that the thing was so imported.",
|
| 166 |
+
"history": "",
|
| 167 |
+
"last_amended": "2002-12-31",
|
| 168 |
+
"current_to": "2019-06-21",
|
| 169 |
+
"citation": "Plant Protection Act, s. 9",
|
| 170 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-9.html"
|
| 171 |
+
},
|
| 172 |
+
{
|
| 173 |
+
"id": "P-14.8-s10",
|
| 174 |
+
"act_code": "P-14.8",
|
| 175 |
+
"act_short": "Plant Protection Act",
|
| 176 |
+
"act_name": "Plant Protection Act",
|
| 177 |
+
"section": "10",
|
| 178 |
+
"marginal_note": "Assistance in controlling or eradicating pests outside Canada",
|
| 179 |
+
"part": "",
|
| 180 |
+
"division": "",
|
| 181 |
+
"heading": "International Assistance",
|
| 182 |
+
"text": "10 The Minister may provide financial or technical assistance to any person or government outside Canada in controlling or eradicating a pest that affects or could affect plants, or products or by-products of plants, in Canada.",
|
| 183 |
+
"history": "",
|
| 184 |
+
"last_amended": "2002-12-31",
|
| 185 |
+
"current_to": "2019-06-21",
|
| 186 |
+
"citation": "Plant Protection Act, s. 10",
|
| 187 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-10.html"
|
| 188 |
+
},
|
| 189 |
+
{
|
| 190 |
+
"id": "P-14.8-s11",
|
| 191 |
+
"act_code": "P-14.8",
|
| 192 |
+
"act_short": "Plant Protection Act",
|
| 193 |
+
"act_name": "Plant Protection Act",
|
| 194 |
+
"section": "11",
|
| 195 |
+
"marginal_note": "Declaration of infested place",
|
| 196 |
+
"part": "",
|
| 197 |
+
"division": "",
|
| 198 |
+
"heading": "Infested Places",
|
| 199 |
+
"text": "11\n(1) Where an inspector suspects or determines that a place is infested with a pest and is of the opinion that the pest could spread, the inspector may in writing declare that the place is infested.\n(2) [Delivery of declaration] When the declaration is delivered to the occupier or owner of the place to which it relates, the place, together with all contiguous lands, buildings and other places occupied or owned by the occupier or owner, constitutes an infested place until the Minister determines otherwise.",
|
| 200 |
+
"history": "",
|
| 201 |
+
"last_amended": "2002-12-31",
|
| 202 |
+
"current_to": "2019-06-21",
|
| 203 |
+
"citation": "Plant Protection Act, s. 11",
|
| 204 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-11.html"
|
| 205 |
+
},
|
| 206 |
+
{
|
| 207 |
+
"id": "P-14.8-s12",
|
| 208 |
+
"act_code": "P-14.8",
|
| 209 |
+
"act_short": "Plant Protection Act",
|
| 210 |
+
"act_name": "Plant Protection Act",
|
| 211 |
+
"section": "12",
|
| 212 |
+
"marginal_note": "Further declaration",
|
| 213 |
+
"part": "",
|
| 214 |
+
"division": "",
|
| 215 |
+
"heading": "Infested Places",
|
| 216 |
+
"text": "12\n(1) Where an inspector declares under section 11 that a place is infested and is of the opinion that the pest could spread to any other land, building or place, the inspector may in writing declare that the other land, building or place is infested.\n(2) [Delivery of declaration] When a declaration is delivered to the occupier or owner of any land, building or place mentioned in subsection (1), the land, building or place, together with all contiguous lands, buildings and places occupied or owned by the same occupier or owner, constitutes part of the infested place.",
|
| 217 |
+
"history": "",
|
| 218 |
+
"last_amended": "2002-12-31",
|
| 219 |
+
"current_to": "2019-06-21",
|
| 220 |
+
"citation": "Plant Protection Act, s. 12",
|
| 221 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-12.html"
|
| 222 |
+
},
|
| 223 |
+
{
|
| 224 |
+
"id": "P-14.8-s13",
|
| 225 |
+
"act_code": "P-14.8",
|
| 226 |
+
"act_short": "Plant Protection Act",
|
| 227 |
+
"act_name": "Plant Protection Act",
|
| 228 |
+
"section": "13",
|
| 229 |
+
"marginal_note": "Interim powers of inspector",
|
| 230 |
+
"part": "",
|
| 231 |
+
"division": "",
|
| 232 |
+
"heading": "Infested Places",
|
| 233 |
+
"text": "13\n(1) Where an inspector is of the opinion that immediate action is required to control a pest, the inspector may, in a declaration under section 11 or 12, and for a period of not more than ninety days, prohibit or restrict the movement of persons and things within, into or out of the infested place for the purpose of controlling the pest.\n(2) [Cessation of prohibition or restriction] A prohibition or restriction contained in a declaration under section 11 or 12 ceases to have effect where\n(a) the inspector rescinds the prohibition or restriction; or\n(b) the declaration is revoked by the Minister under subsection 15(2).",
|
| 234 |
+
"history": "",
|
| 235 |
+
"last_amended": "2002-12-31",
|
| 236 |
+
"current_to": "2019-06-21",
|
| 237 |
+
"citation": "Plant Protection Act, s. 13",
|
| 238 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-13.html"
|
| 239 |
+
},
|
| 240 |
+
{
|
| 241 |
+
"id": "P-14.8-s14",
|
| 242 |
+
"act_code": "P-14.8",
|
| 243 |
+
"act_short": "Plant Protection Act",
|
| 244 |
+
"act_name": "Plant Protection Act",
|
| 245 |
+
"section": "14",
|
| 246 |
+
"marginal_note": "Where occupier or owner not found",
|
| 247 |
+
"part": "",
|
| 248 |
+
"division": "",
|
| 249 |
+
"heading": "Infested Places",
|
| 250 |
+
"text": "14 Where an inspector cannot, after the exercise of due diligence, find the occupier or owner of any land, building or other place, delivery of a declaration may be effected by posting it on the building or on any building or conspicuous object on the land or at the place.",
|
| 251 |
+
"history": "",
|
| 252 |
+
"last_amended": "2002-12-31",
|
| 253 |
+
"current_to": "2019-06-21",
|
| 254 |
+
"citation": "Plant Protection Act, s. 14",
|
| 255 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-14.html"
|
| 256 |
+
},
|
| 257 |
+
{
|
| 258 |
+
"id": "P-14.8-s15",
|
| 259 |
+
"act_code": "P-14.8",
|
| 260 |
+
"act_short": "Plant Protection Act",
|
| 261 |
+
"act_name": "Plant Protection Act",
|
| 262 |
+
"section": "15",
|
| 263 |
+
"marginal_note": "Report to Minister",
|
| 264 |
+
"part": "",
|
| 265 |
+
"division": "",
|
| 266 |
+
"heading": "Infested Places",
|
| 267 |
+
"text": "15\n(1) An inspector who declares that a place is infested shall, as soon as is practicable, send a report of the declaration to the Minister.\n(2) [Revocation of declaration] Where a place has been declared infested under section 11 or 12, the Minister may revoke the declaration and, on revocation, the place shall cease to be an infested place.\n(3) [Powers of Minister] The Minister may, by order,\n(a) declare any place to be infested that is not already the subject of a declaration under section 11 or 12;\n(b) determine and subsequently vary the area of any place that is declared infested;\n(c) extend the period of any prohibition or restriction declared by an inspector under subsection 13(1);\n(d) prohibit or restrict the movement of persons and things within, into or out of any place that is declared infested; and\n(e) permit any movement of persons and things within, into or out of a place that would otherwise be prohibited by this section or section 6.",
|
| 268 |
+
"history": "",
|
| 269 |
+
"last_amended": "2002-12-31",
|
| 270 |
+
"current_to": "2019-06-21",
|
| 271 |
+
"citation": "Plant Protection Act, s. 15",
|
| 272 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-15.html"
|
| 273 |
+
},
|
| 274 |
+
{
|
| 275 |
+
"id": "P-14.8-s16",
|
| 276 |
+
"act_code": "P-14.8",
|
| 277 |
+
"act_short": "Plant Protection Act",
|
| 278 |
+
"act_name": "Plant Protection Act",
|
| 279 |
+
"section": "16",
|
| 280 |
+
"marginal_note": "Description of area of infested place",
|
| 281 |
+
"part": "",
|
| 282 |
+
"division": "",
|
| 283 |
+
"heading": "Infested Places",
|
| 284 |
+
"text": "16 In a declaration under section 11 or 12 or subsection 15(3), the area of an infested place may be described by reference to a map or plan deposited and publicly available at a place specified in the declaration, or by reference to any farm, county, district, municipality, province or any part thereof.",
|
| 285 |
+
"history": "",
|
| 286 |
+
"last_amended": "2002-12-31",
|
| 287 |
+
"current_to": "2019-06-21",
|
| 288 |
+
"citation": "Plant Protection Act, s. 16",
|
| 289 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-16.html"
|
| 290 |
+
},
|
| 291 |
+
{
|
| 292 |
+
"id": "P-14.8-s17",
|
| 293 |
+
"act_code": "P-14.8",
|
| 294 |
+
"act_short": "Plant Protection Act",
|
| 295 |
+
"act_name": "Plant Protection Act",
|
| 296 |
+
"section": "17",
|
| 297 |
+
"marginal_note": "Prohibition or restriction supersedes",
|
| 298 |
+
"part": "",
|
| 299 |
+
"division": "",
|
| 300 |
+
"heading": "Infested Places",
|
| 301 |
+
"text": "17 A prohibition or restriction imposed by the Minister or an inspector supersedes any order of a local authority that is inconsistent with it.",
|
| 302 |
+
"history": "",
|
| 303 |
+
"last_amended": "2002-12-31",
|
| 304 |
+
"current_to": "2019-06-21",
|
| 305 |
+
"citation": "Plant Protection Act, s. 17",
|
| 306 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-17.html"
|
| 307 |
+
},
|
| 308 |
+
{
|
| 309 |
+
"id": "P-14.8-s18",
|
| 310 |
+
"act_code": "P-14.8",
|
| 311 |
+
"act_short": "Plant Protection Act",
|
| 312 |
+
"act_name": "Plant Protection Act",
|
| 313 |
+
"section": "18",
|
| 314 |
+
"marginal_note": "Not a statutory instrument",
|
| 315 |
+
"part": "",
|
| 316 |
+
"division": "",
|
| 317 |
+
"heading": "Infested Places",
|
| 318 |
+
"text": "18 A declaration under section 11 or 12, a revocation of a declaration under subsection 15(2) and an order under subsection 15(3) are not statutory instruments for the purposes of the Statutory Instruments Act, but the Minister shall take such steps as may be practicable in the circumstances to bring any order under subsection 15(3) to the notice of persons likely to be affected by it.",
|
| 319 |
+
"history": "",
|
| 320 |
+
"last_amended": "2002-12-31",
|
| 321 |
+
"current_to": "2019-06-21",
|
| 322 |
+
"citation": "Plant Protection Act, s. 18",
|
| 323 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-18.html"
|
| 324 |
+
},
|
| 325 |
+
{
|
| 326 |
+
"id": "P-14.8-s19",
|
| 327 |
+
"act_code": "P-14.8",
|
| 328 |
+
"act_short": "Plant Protection Act",
|
| 329 |
+
"act_name": "Plant Protection Act",
|
| 330 |
+
"section": "19",
|
| 331 |
+
"marginal_note": "Designation of facilities",
|
| 332 |
+
"part": "",
|
| 333 |
+
"division": "",
|
| 334 |
+
"heading": "Facilities",
|
| 335 |
+
"text": "19 The Minister may designate areas, offices, laboratories or other facilities inside or outside Canada for a specified purpose or generally for the administration of this Act or the regulations and may at any time amend, cancel or reinstate any such designation.",
|
| 336 |
+
"history": "",
|
| 337 |
+
"last_amended": "2002-12-31",
|
| 338 |
+
"current_to": "2019-06-21",
|
| 339 |
+
"citation": "Plant Protection Act, s. 19",
|
| 340 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-19.html"
|
| 341 |
+
},
|
| 342 |
+
{
|
| 343 |
+
"id": "P-14.8-s20",
|
| 344 |
+
"act_code": "P-14.8",
|
| 345 |
+
"act_short": "Plant Protection Act",
|
| 346 |
+
"act_name": "Plant Protection Act",
|
| 347 |
+
"section": "20",
|
| 348 |
+
"marginal_note": "Definition of international transportation undertaking",
|
| 349 |
+
"part": "",
|
| 350 |
+
"division": "",
|
| 351 |
+
"heading": "Facilities",
|
| 352 |
+
"text": "20\n(1) For the purposes of this section, international transportation undertaking means\n(a) an undertaking that transports persons or things internationally;\n(b) an international road, railway, bridge or tunnel;\n(c) an airport that receives any aircraft operating on an international flight;\n(d) a port that receives any ship sailing on an international voyage; and\n(e) a warehouse or other facility that receives any international air, water, rail or road traffic.\n(2) [Required facilities] The owner or operator of an international transportation undertaking shall, where required in writing by the Minister, provide and maintain adequate areas, offices, laboratories and other facilities, including buildings, accommodation, equipment, furnishings and fixtures, for inspection or for any other purpose related to the administration of this Act or the regulations.\n(3) [Powers of Minister] The Minister may\n(a) cause to be made such improvements as the Minister considers desirable to any area, office, laboratory or other facility provided pursuant to subsection (2);\n(b) post, on or about the area, office, laboratory or other facility, any signs that the Minister considers appropriate for its operation or safe use or for the administration of this Act or the regulations; and\n(c) continue to use the area, office, laboratory or other facility for as long as the Minister requires it for the administration of this Act or the regulations.\n(4) [Construction or repairs] Where an area, office, laboratory or other facility that is provided by an owner or operator pursuant to subsection (2) is not adequate for the purposes mentioned in that subsection, the Minister may require the owner or operator to carry out any construction or repairs in order to render the area, office, laboratory or other facility adequate for those purposes, and if the owner or operator fails to do so, the Minister may cause the construction or repairs to be carried out and the owner or operator shall be liable for all reasonable costs incurred by the Minister and those costs may be recovered by Her Majesty in right of Canada.\n(5) [Notice] A requirement under subsection (4) shall be communicated by personal delivery of a notice to the owner or operator or by sending the notice to the owner or operator, and the notice may specify the period within which or the manner in which the construction or repairs are to be carried out.\n(6) [Arbitration] Subject to subsection (7) and any regulations made under subsection (8), a dispute over the adequacy of any area, office, laboratory or other facility may be resolved by arbitration in accordance with the Commercial Arbitration Act.\n(7) [Canada Labour Code] Any area, office, laboratory or other facility that fails to meet the applicable requirements of Part II of the Canada Labour Code shall be deemed to be not adequate for the purposes mentioned in subsection (2).\n(8) [Regulations] The Governor in Council may make regulations for determining the adequacy of any area, office, laboratory or other facility for the purposes mentioned in subsection (2).",
|
| 353 |
+
"history": "1990, c. 22, s. 20; 2015, c. 3, s. 143(F)",
|
| 354 |
+
"last_amended": "2015-02-26",
|
| 355 |
+
"current_to": "2019-06-21",
|
| 356 |
+
"citation": "Plant Protection Act, s. 20",
|
| 357 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-20.html"
|
| 358 |
+
},
|
| 359 |
+
{
|
| 360 |
+
"id": "P-14.8-s21",
|
| 361 |
+
"act_code": "P-14.8",
|
| 362 |
+
"act_short": "Plant Protection Act",
|
| 363 |
+
"act_name": "Plant Protection Act",
|
| 364 |
+
"section": "21",
|
| 365 |
+
"marginal_note": "Designation of inspectors",
|
| 366 |
+
"part": "",
|
| 367 |
+
"division": "",
|
| 368 |
+
"heading": "Inspectors",
|
| 369 |
+
"text": "21\n(1) The President of the Canadian Food Inspection Agency may designate inspectors under section 13 of the Canadian Food Inspection Agency Act for the purposes of this Act.\n(1.1) [Designation] The President of the Canada Border Services Agency may designate inspectors under paragraph 9(2)(b) of the Canada Border Services Agency Act for the purposes of enforcing this Act.\n(2) [Certificate to be produced] Inspectors shall be given certificates in a form established by the President of the Canadian Food Inspection Agency or the President of the Canada Border Services Agency, as the case may be, attesting to their designation and, on entering any place under this Act, an inspector shall show the certificate to the person in charge of the place if the person requests proof of the inspector’s designation.",
|
| 370 |
+
"history": "1990, c. 22, s. 21; 1997, c. 6, s. 82; 2005, c. 38, s. 123",
|
| 371 |
+
"last_amended": "2005-12-12",
|
| 372 |
+
"current_to": "2019-06-21",
|
| 373 |
+
"citation": "Plant Protection Act, s. 21",
|
| 374 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-21.html"
|
| 375 |
+
},
|
| 376 |
+
{
|
| 377 |
+
"id": "P-14.8-s22",
|
| 378 |
+
"act_code": "P-14.8",
|
| 379 |
+
"act_short": "Plant Protection Act",
|
| 380 |
+
"act_name": "Plant Protection Act",
|
| 381 |
+
"section": "22",
|
| 382 |
+
"marginal_note": "Inspectors may exercise Minister’s powers",
|
| 383 |
+
"part": "",
|
| 384 |
+
"division": "",
|
| 385 |
+
"heading": "Inspectors",
|
| 386 |
+
"text": "22\n(1) An inspector may, subject to any restrictions or limitations specified by the Minister, exercise any of the powers and perform any of the duties or functions of the Minister under this Act, except the powers mentioned in subsection 15(3).\n(2) [Powers concerning movement and loading] For the purpose of determining whether a conveyance or other thing is free of any pest, an inspector may\n(a) permit or require the conveyance or other thing to be moved or prohibit its movement; or\n(b) prohibit or interrupt the loading, unloading or partial loading of the conveyance or other thing or permit or require the conveyance or other thing to be loaded, unloaded or partially loaded.",
|
| 387 |
+
"history": "",
|
| 388 |
+
"last_amended": "2002-12-31",
|
| 389 |
+
"current_to": "2019-06-21",
|
| 390 |
+
"citation": "Plant Protection Act, s. 22",
|
| 391 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-22.html"
|
| 392 |
+
},
|
| 393 |
+
{
|
| 394 |
+
"id": "P-14.8-s23",
|
| 395 |
+
"act_code": "P-14.8",
|
| 396 |
+
"act_short": "Plant Protection Act",
|
| 397 |
+
"act_name": "Plant Protection Act",
|
| 398 |
+
"section": "23",
|
| 399 |
+
"marginal_note": "Impeding inspector",
|
| 400 |
+
"part": "",
|
| 401 |
+
"division": "",
|
| 402 |
+
"heading": "Inspectors",
|
| 403 |
+
"text": "23\n(1) No person shall obstruct or hinder or make any false or misleading statement either orally or in writing to an inspector who is performing duties or functions under this Act or the regulations.\n(2) [Assistance to inspectors] The owner or the person in charge of a place entered by an inspector under section 25 and every person found in the place shall\n(a) give the inspector all reasonable assistance in the owner’s or person’s power to enable the inspector to perform duties and functions under this Act or the regulations; and\n(b) furnish the inspector with such information relevant to the administration of this Act or the regulations as the inspector may reasonably require.\n(3) [Assistance of peace officer] A peace officer shall provide such assistance as an inspector may request for the purpose of enforcing this Act or the regulations.",
|
| 404 |
+
"history": "",
|
| 405 |
+
"last_amended": "2002-12-31",
|
| 406 |
+
"current_to": "2019-06-21",
|
| 407 |
+
"citation": "Plant Protection Act, s. 23",
|
| 408 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-23.html"
|
| 409 |
+
},
|
| 410 |
+
{
|
| 411 |
+
"id": "P-14.8-s23.1",
|
| 412 |
+
"act_code": "P-14.8",
|
| 413 |
+
"act_short": "Plant Protection Act",
|
| 414 |
+
"act_name": "Plant Protection Act",
|
| 415 |
+
"section": "23.1",
|
| 416 |
+
"marginal_note": "Provision of documents, information or samples",
|
| 417 |
+
"part": "",
|
| 418 |
+
"division": "",
|
| 419 |
+
"heading": "Inspectors",
|
| 420 |
+
"text": "23.1\n(1) An inspector may, for the purpose of detecting pests or for a purpose related to verifying compliance or preventing non-compliance with this Act, order a person to provide, on the date, at the time and place and in the manner specified by the inspector, any document, information or sample specified by the inspector.\n(2) [Duty to provide document, information or sample] A person who is ordered by an inspector to provide a document, information or a sample has a duty to do so on the specified date, at the specified time and place and in the specified manner.",
|
| 421 |
+
"history": "2015, c. 2, s. 102",
|
| 422 |
+
"last_amended": "2015-02-27",
|
| 423 |
+
"current_to": "2019-06-21",
|
| 424 |
+
"citation": "Plant Protection Act, s. 23.1",
|
| 425 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-23.1.html"
|
| 426 |
+
},
|
| 427 |
+
{
|
| 428 |
+
"id": "P-14.8-s24",
|
| 429 |
+
"act_code": "P-14.8",
|
| 430 |
+
"act_short": "Plant Protection Act",
|
| 431 |
+
"act_name": "Plant Protection Act",
|
| 432 |
+
"section": "24",
|
| 433 |
+
"marginal_note": "Broken seal",
|
| 434 |
+
"part": "",
|
| 435 |
+
"division": "",
|
| 436 |
+
"heading": "Seals",
|
| 437 |
+
"text": "24\n(1) Where a seal or other identifying device authorized by the regulations has been affixed to a conveyance or other thing and the seal or device is broken, altered, tampered with or removed in contravention of the regulations, an inspector may require that the conveyance or other thing, or any thing contained in it, be stored, treated, placed in quarantine, disposed of or moved as the inspector may direct.\n(2) [Notice] A requirement under subsection (1) shall be communicated by personal delivery of a notice to the owner or person having the possession, care or control of the conveyance or other thing or by sending the notice to the owner or person, and the notice may specify the period within which or the manner in which the conveyance or other thing is to be stored, treated, quarantined, disposed of or moved.",
|
| 438 |
+
"history": "1990, c. 22, s. 24; 2015, c. 3, s. 144(F)",
|
| 439 |
+
"last_amended": "2015-02-26",
|
| 440 |
+
"current_to": "2019-06-21",
|
| 441 |
+
"citation": "Plant Protection Act, s. 24",
|
| 442 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-24.html"
|
| 443 |
+
},
|
| 444 |
+
{
|
| 445 |
+
"id": "P-14.8-s25",
|
| 446 |
+
"act_code": "P-14.8",
|
| 447 |
+
"act_short": "Plant Protection Act",
|
| 448 |
+
"act_name": "Plant Protection Act",
|
| 449 |
+
"section": "25",
|
| 450 |
+
"marginal_note": "Inspection",
|
| 451 |
+
"part": "",
|
| 452 |
+
"division": "",
|
| 453 |
+
"heading": "Inspection",
|
| 454 |
+
"text": "25\n(1) For the purpose of detecting pests or for a purpose related to verifying compliance or preventing non-compliance with this Act, an inspector may\n(a) subject to section 26, at any reasonable time, enter and inspect any place, or stop any conveyance, in which the inspector believes on reasonable grounds there is any thing in respect of which this Act or the regulations apply;\n(b) open any receptacle, baggage, package, cage or other thing that the inspector believes on reasonable grounds contains any thing in respect of which this Act or the regulations apply;\n(c) examine any thing in respect of which this Act or the regulations apply and take samples of it;\n(d) require any person to produce for inspection or copying, in whole or in part, any record or other document that the inspector believes on reasonable grounds contains any information relevant to the administration of this Act or the regulations; and\n(e) conduct any tests or analyses or take any measurements.\n(2) [Operation of data processing and copying equipment] In carrying out an inspection at any place under this section, an inspector may\n(a) use or cause to be used any data processing system at the place to examine any data contained in or available to the system;\n(b) reproduce any document or cause it to be reproduced from the data in the form of a printout or other intelligible output and take the printout or other output for examination or copying; and\n(c) use or cause to be used any copying equipment at the place to make copies of any record or other document.",
|
| 455 |
+
"history": "1990, c. 22, s. 25; 2015, c. 2, s. 103",
|
| 456 |
+
"last_amended": "2015-02-27",
|
| 457 |
+
"current_to": "2019-06-21",
|
| 458 |
+
"citation": "Plant Protection Act, s. 25",
|
| 459 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-25.html"
|
| 460 |
+
},
|
| 461 |
+
{
|
| 462 |
+
"id": "P-14.8-s26",
|
| 463 |
+
"act_code": "P-14.8",
|
| 464 |
+
"act_short": "Plant Protection Act",
|
| 465 |
+
"act_name": "Plant Protection Act",
|
| 466 |
+
"section": "26",
|
| 467 |
+
"marginal_note": "Warrant required to enter dwelling-place",
|
| 468 |
+
"part": "",
|
| 469 |
+
"division": "",
|
| 470 |
+
"heading": "Inspection",
|
| 471 |
+
"text": "26\n(1) An inspector may not enter a dwelling-place except with the consent of the occupant of the dwelling-place or under the authority of a warrant.\n(2) [Authority to issue warrant] Where on ex parte application a justice is satisfied by information on oath that\n(a) the conditions for entry described in section 25 exist in relation to a dwelling-place,\n(b) entry to the dwelling-place is necessary for any purpose relating to the administration of this Act or the regulations, and\n(c) entry to the dwelling-place has been refused or there are reasonable grounds to believe that entry will be refused,\nthe justice may at any time sign and issue a warrant authorizing the inspector named in the warrant to enter the dwelling-place, subject to any conditions that may be specified in the warrant.\n(3) [Use of force] The inspector who executes a warrant shall not use force unless the inspector is accompanied by a peace officer and the use of force is specifically authorized in the warrant.",
|
| 472 |
+
"history": "",
|
| 473 |
+
"last_amended": "2002-12-31",
|
| 474 |
+
"current_to": "2019-06-21",
|
| 475 |
+
"citation": "Plant Protection Act, s. 26",
|
| 476 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-26.html"
|
| 477 |
+
},
|
| 478 |
+
{
|
| 479 |
+
"id": "P-14.8-s27",
|
| 480 |
+
"act_code": "P-14.8",
|
| 481 |
+
"act_short": "Plant Protection Act",
|
| 482 |
+
"act_name": "Plant Protection Act",
|
| 483 |
+
"section": "27",
|
| 484 |
+
"marginal_note": "Seizure",
|
| 485 |
+
"part": "",
|
| 486 |
+
"division": "",
|
| 487 |
+
"heading": "Inspection",
|
| 488 |
+
"text": "27 Where an inspector believes on reasonable grounds that a violation, or an offence under this Act, has been committed, the inspector may seize and detain any thing\n(a) by means of or in relation to which the inspector believes on reasonable grounds the violation or offence was committed; or\n(b) that the inspector believes on reasonable grounds will afford evidence in respect of the commission of a violation, or an offence under this Act.",
|
| 489 |
+
"history": "1990, c. 22, s. 27; 1995, c. 40, s. 76",
|
| 490 |
+
"last_amended": "2002-12-31",
|
| 491 |
+
"current_to": "2019-06-21",
|
| 492 |
+
"citation": "Plant Protection Act, s. 27",
|
| 493 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-27.html"
|
| 494 |
+
},
|
| 495 |
+
{
|
| 496 |
+
"id": "P-14.8-s28",
|
| 497 |
+
"act_code": "P-14.8",
|
| 498 |
+
"act_short": "Plant Protection Act",
|
| 499 |
+
"act_name": "Plant Protection Act",
|
| 500 |
+
"section": "28",
|
| 501 |
+
"marginal_note": "Warrant",
|
| 502 |
+
"part": "",
|
| 503 |
+
"division": "",
|
| 504 |
+
"heading": "Search",
|
| 505 |
+
"text": "28\n(1) Where on ex parte application a justice is satisfied by information on oath that there are reasonable grounds to believe that there is in any place any thing\n(a) by means of or in relation to which a violation, or an offence under this Act, has been committed or is suspected of having been committed, or\n(b) that there are reasonable grounds to believe will afford evidence in respect of the commission of a violation or an offence under this Act,\nthe justice may at any time sign and issue a warrant authorizing the inspector named in the warrant to enter and search the place for the thing and, subject to any conditions that may be specified in the warrant, to seize and detain it.\n(2) [Search and seizure powers] The inspector who executes a warrant may exercise the powers described in section 25 and may seize and detain, in addition to any thing mentioned in the warrant, any other thing\n(a) by means of or in relation to which the inspector believes on reasonable grounds a violation, or an offence under this Act, has been committed; or\n(b) that the inspector believes on reasonable grounds will afford evidence in respect of the commission of a violation, or an offence under this Act.\n(3) [Execution of search warrant] A warrant shall be executed by day unless the justice authorizes its execution by night.\n(4) [Where warrant not necessary] An inspector may exercise any of the powers referred to in subsections (1) and (2) without a warrant if the conditions for obtaining a warrant exist but, by reason of exigent circumstances, it would not be practical to obtain a warrant.",
|
| 506 |
+
"history": "1990, c. 22, s. 28; 1995, c. 40, s. 77",
|
| 507 |
+
"last_amended": "2002-12-31",
|
| 508 |
+
"current_to": "2019-06-21",
|
| 509 |
+
"citation": "Plant Protection Act, s. 28",
|
| 510 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-28.html"
|
| 511 |
+
},
|
| 512 |
+
{
|
| 513 |
+
"id": "P-14.8-s29",
|
| 514 |
+
"act_code": "P-14.8",
|
| 515 |
+
"act_short": "Plant Protection Act",
|
| 516 |
+
"act_name": "Plant Protection Act",
|
| 517 |
+
"section": "29",
|
| 518 |
+
"marginal_note": "Notice of reason for seizure",
|
| 519 |
+
"part": "",
|
| 520 |
+
"division": "",
|
| 521 |
+
"heading": "Disposition of Seized Things",
|
| 522 |
+
"text": "29 An inspector who seizes and detains a thing under this Act shall, as soon as is practicable, advise the owner of the thing or the person having the possession, care or control of it at the time of its seizure of the reason for the seizure.",
|
| 523 |
+
"history": "",
|
| 524 |
+
"last_amended": "2002-12-31",
|
| 525 |
+
"current_to": "2019-06-21",
|
| 526 |
+
"citation": "Plant Protection Act, s. 29",
|
| 527 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-29.html"
|
| 528 |
+
},
|
| 529 |
+
{
|
| 530 |
+
"id": "P-14.8-s30",
|
| 531 |
+
"act_code": "P-14.8",
|
| 532 |
+
"act_short": "Plant Protection Act",
|
| 533 |
+
"act_name": "Plant Protection Act",
|
| 534 |
+
"section": "30",
|
| 535 |
+
"marginal_note": "Storage, removal, etc.",
|
| 536 |
+
"part": "",
|
| 537 |
+
"division": "",
|
| 538 |
+
"heading": "Disposition of Seized Things",
|
| 539 |
+
"text": "30\n(1) An inspector who seizes and detains a thing under this Act, or any person designated by the inspector, may\n(a) store, treat, quarantine or dispose of the thing at the place where it was seized or move it to any other place for storage, treatment, quarantine or disposition; or\n(b) require its owner or the person having the possession, care or control of it at the time of its seizure to store, treat, quarantine or dispose of it or move it to any other place and store, treat, quarantine or dispose of it.\n(2) [Notice] A requirement under paragraph (1)(b) shall be communicated by personal delivery of a notice to the owner or person having the possession, care or control of the thing or by sending the notice to the owner or person, and the notice may specify the period within which or the manner in which the thing is to be moved, stored, treated, quarantined or disposed of.\n(3) [Proceeds] An inspector who seizes and detains a thing under this Act may dispose of it and any proceeds realized from its disposition shall be paid to the Receiver General.",
|
| 540 |
+
"history": "1990, c. 22, s. 30; 2015, c. 3, s. 145(F)",
|
| 541 |
+
"last_amended": "2015-02-26",
|
| 542 |
+
"current_to": "2019-06-21",
|
| 543 |
+
"citation": "Plant Protection Act, s. 30",
|
| 544 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-30.html"
|
| 545 |
+
},
|
| 546 |
+
{
|
| 547 |
+
"id": "P-14.8-s31",
|
| 548 |
+
"act_code": "P-14.8",
|
| 549 |
+
"act_short": "Plant Protection Act",
|
| 550 |
+
"act_name": "Plant Protection Act",
|
| 551 |
+
"section": "31",
|
| 552 |
+
"marginal_note": "Interference with seized things",
|
| 553 |
+
"part": "",
|
| 554 |
+
"division": "",
|
| 555 |
+
"heading": "Disposition of Seized Things",
|
| 556 |
+
"text": "31 Except as authorized in writing by an inspector, no person shall remove, alter or interfere in any way with a thing that is seized and detained under this Act.",
|
| 557 |
+
"history": "",
|
| 558 |
+
"last_amended": "2002-12-31",
|
| 559 |
+
"current_to": "2019-06-21",
|
| 560 |
+
"citation": "Plant Protection Act, s. 31",
|
| 561 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-31.html"
|
| 562 |
+
},
|
| 563 |
+
{
|
| 564 |
+
"id": "P-14.8-s32",
|
| 565 |
+
"act_code": "P-14.8",
|
| 566 |
+
"act_short": "Plant Protection Act",
|
| 567 |
+
"act_name": "Plant Protection Act",
|
| 568 |
+
"section": "32",
|
| 569 |
+
"marginal_note": "Release of seized thing",
|
| 570 |
+
"part": "",
|
| 571 |
+
"division": "",
|
| 572 |
+
"heading": "Disposition of Seized Things",
|
| 573 |
+
"text": "32\n(1) If an inspector is satisfied that the provisions of this Act and the regulations that apply with respect to a thing seized under this Act have been complied with, the thing must be released.\n(2) [Application for return] If proceedings are instituted in relation to a thing seized under this Act and it has not been disposed of or forfeited under this Act, the owner of the thing or the person having the possession, care or control of it at the time of its seizure may apply for an order that it be returned. The application may be made, in the case of a violation, to the Tribunal or, in the case of an offence, to the court before which the proceedings are being held.\n(3) [Order] The Tribunal or court, as the case may be, may order that the thing be returned to the applicant, subject to such conditions as the Tribunal or court may impose to ensure that it is preserved for any purpose for which it may subsequently be required, where the Tribunal or court is satisfied that sufficient evidence exists or may reasonably be obtained without detaining the thing and that it is not a pest, is not infested with a pest and does not constitute a biological obstacle to the control of a pest.",
|
| 574 |
+
"history": "1990, c. 22, s. 32; 1995, c. 40, s. 78; 2015, c. 2, s. 104",
|
| 575 |
+
"last_amended": "2015-02-27",
|
| 576 |
+
"current_to": "2019-06-21",
|
| 577 |
+
"citation": "Plant Protection Act, s. 32",
|
| 578 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-32.html"
|
| 579 |
+
},
|
| 580 |
+
{
|
| 581 |
+
"id": "P-14.8-s33",
|
| 582 |
+
"act_code": "P-14.8",
|
| 583 |
+
"act_short": "Plant Protection Act",
|
| 584 |
+
"act_name": "Plant Protection Act",
|
| 585 |
+
"section": "33",
|
| 586 |
+
"marginal_note": "Forfeiture",
|
| 587 |
+
"part": "",
|
| 588 |
+
"division": "",
|
| 589 |
+
"heading": "Disposition of Seized Things",
|
| 590 |
+
"text": "33\n(1) Where the Tribunal decides that a person has committed a violation, or a person is convicted of an offence under this Act, the Tribunal or the convicting court, as the case may be, may, on its own motion or at the request of any party to the proceedings, in addition to any penalty or punishment imposed, order that any thing by means of or in relation to which the violation or offence was committed, or any proceeds realized from its disposition, be forfeited to Her Majesty in right of Canada.\n(2) [Forfeiture without conviction] Where the owner of a thing that is seized and detained under this Act consents to its forfeiture, it is thereupon forfeited to Her Majesty in right of Canada and shall be disposed of as the Minister may direct.",
|
| 591 |
+
"history": "1990, c. 22, s. 33; 1995, c. 40, s. 79",
|
| 592 |
+
"last_amended": "2002-12-31",
|
| 593 |
+
"current_to": "2019-06-21",
|
| 594 |
+
"citation": "Plant Protection Act, s. 33",
|
| 595 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-33.html"
|
| 596 |
+
},
|
| 597 |
+
{
|
| 598 |
+
"id": "P-14.8-s34",
|
| 599 |
+
"act_code": "P-14.8",
|
| 600 |
+
"act_short": "Plant Protection Act",
|
| 601 |
+
"act_name": "Plant Protection Act",
|
| 602 |
+
"section": "34",
|
| 603 |
+
"marginal_note": "Disposal of forfeited things",
|
| 604 |
+
"part": "",
|
| 605 |
+
"division": "",
|
| 606 |
+
"heading": "Disposition of Seized Things",
|
| 607 |
+
"text": "34\n(1) If the Tribunal or the court, as the case may be, orders the forfeiture of a thing under subsection 33(1), the thing shall be disposed of as the Minister may direct.\n(2) [Return of seized things where no forfeiture ordered] Where the Tribunal or court, as the case may be, does not order the forfeiture of a thing, it or any proceeds realized from its disposition shall be returned to the owner of the thing or the person having the possession, care or control of it at the time of its seizure.\n(3) [Exception] Where the Tribunal decides that the owner of a thing or the person having the possession, care or control of it at the time of its seizure has committed a violation, or the owner of a thing or the person having the possession, care or control of it at the time of its seizure is convicted of an offence under this Act, and a penalty or fine, as the case may be, is imposed,\n(a) the thing may be detained until the penalty or fine is paid;\n(b) the thing may be sold under execution in satisfaction of the penalty or fine; or\n(c) any proceeds realized from its disposition under paragraph (b) or subsection 30(3) may be applied in payment of the penalty or fine.",
|
| 608 |
+
"history": "1990, c. 22, s. 34; 1995, c. 40, s. 80; 2015, c. 2, s. 105",
|
| 609 |
+
"last_amended": "2015-02-27",
|
| 610 |
+
"current_to": "2019-06-21",
|
| 611 |
+
"citation": "Plant Protection Act, s. 34",
|
| 612 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-34.html"
|
| 613 |
+
},
|
| 614 |
+
{
|
| 615 |
+
"id": "P-14.8-s35",
|
| 616 |
+
"act_code": "P-14.8",
|
| 617 |
+
"act_short": "Plant Protection Act",
|
| 618 |
+
"act_name": "Plant Protection Act",
|
| 619 |
+
"section": "35",
|
| 620 |
+
"marginal_note": "Confiscation",
|
| 621 |
+
"part": "",
|
| 622 |
+
"division": "",
|
| 623 |
+
"heading": "Confiscation",
|
| 624 |
+
"text": "35\n(1) An inspector may confiscate and dispose of any thing that the inspector believes on reasonable grounds is a pest, is or could be infested with a pest or constitutes or could constitute a biological obstacle to the control of a pest.\n(2) [Notice of reason for confiscation] An inspector who confiscates a thing shall, as soon as is practicable, advise the owner of the thing or the person having the possession, care or control of it at the time of its confiscation of the reason for the confiscation.",
|
| 625 |
+
"history": "",
|
| 626 |
+
"last_amended": "2002-12-31",
|
| 627 |
+
"current_to": "2019-06-21",
|
| 628 |
+
"citation": "Plant Protection Act, s. 35",
|
| 629 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-35.html"
|
| 630 |
+
},
|
| 631 |
+
{
|
| 632 |
+
"id": "P-14.8-s36",
|
| 633 |
+
"act_code": "P-14.8",
|
| 634 |
+
"act_short": "Plant Protection Act",
|
| 635 |
+
"act_name": "Plant Protection Act",
|
| 636 |
+
"section": "36",
|
| 637 |
+
"marginal_note": "Storage and movement",
|
| 638 |
+
"part": "",
|
| 639 |
+
"division": "",
|
| 640 |
+
"heading": "Confiscation",
|
| 641 |
+
"text": "36\n(1) A confiscated thing may be stored at the place where it was confiscated until it is disposed of, or may, at the inspector’s discretion, be moved to any other place for storage or disposition.\n(2) [Disposition] An inspector may take such action as the inspector considers appropriate in relation to a confiscated thing or may require the owner of a confiscated thing or the person having the possession, care or control of it at the time of its confiscation to take any action the inspector considers appropriate in relation to the confiscated thing.\n(3) [Notice] A requirement under subsection (2) shall be communicated by personal delivery of a notice to the owner or person having the possession, care or control of the thing or by sending the notice to the owner or person, and the notice may specify the period within which or the manner in which any action shall be taken by the owner or person.",
|
| 642 |
+
"history": "1990, c. 22, s. 36; 2015, c. 3, s. 146(F)",
|
| 643 |
+
"last_amended": "2015-02-26",
|
| 644 |
+
"current_to": "2019-06-21",
|
| 645 |
+
"citation": "Plant Protection Act, s. 36",
|
| 646 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-36.html"
|
| 647 |
+
},
|
| 648 |
+
{
|
| 649 |
+
"id": "P-14.8-s36.1",
|
| 650 |
+
"act_code": "P-14.8",
|
| 651 |
+
"act_short": "Plant Protection Act",
|
| 652 |
+
"act_name": "Plant Protection Act",
|
| 653 |
+
"section": "36.1",
|
| 654 |
+
"marginal_note": "Altering, destroying or falsifying required documents",
|
| 655 |
+
"part": "",
|
| 656 |
+
"division": "",
|
| 657 |
+
"heading": "Prohibitions Respecting Documents",
|
| 658 |
+
"text": "36.1\n(1) No person shall alter, destroy or falsify a document that they are required under this Act to keep, maintain or provide.\n(2) [Altering, possessing, etc., official documents] No person shall\n(a) alter a document issued or made — or in any manner given — under this Act;\n(b) have in their possession or use a document issued or made — or in any manner given — under this Act that has been altered; or\n(c) use any document issued or made — or in any manner given — under this Act for a purpose or in respect of a thing, other than the purpose or thing for which the document was issued, made or given.",
|
| 659 |
+
"history": "2015, c. 2, s. 106",
|
| 660 |
+
"last_amended": "2015-02-27",
|
| 661 |
+
"current_to": "2019-06-21",
|
| 662 |
+
"citation": "Plant Protection Act, s. 36.1",
|
| 663 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-36.1.html"
|
| 664 |
+
},
|
| 665 |
+
{
|
| 666 |
+
"id": "P-14.8-s36.2",
|
| 667 |
+
"act_code": "P-14.8",
|
| 668 |
+
"act_short": "Plant Protection Act",
|
| 669 |
+
"act_name": "Plant Protection Act",
|
| 670 |
+
"section": "36.2",
|
| 671 |
+
"marginal_note": "Possessing or using documents that resemble official documents",
|
| 672 |
+
"part": "",
|
| 673 |
+
"division": "",
|
| 674 |
+
"heading": "Prohibitions Respecting Documents",
|
| 675 |
+
"text": "36.2 No person shall have in their possession or use any document that has not been issued or made — or in any manner given — under this Act if it so closely resembles a document that has been so issued, made or given that it is likely to be mistaken for it.",
|
| 676 |
+
"history": "2015, c. 2, s. 106",
|
| 677 |
+
"last_amended": "2015-02-27",
|
| 678 |
+
"current_to": "2019-06-21",
|
| 679 |
+
"citation": "Plant Protection Act, s. 36.2",
|
| 680 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-36.2.html"
|
| 681 |
+
},
|
| 682 |
+
{
|
| 683 |
+
"id": "P-14.8-s36.3",
|
| 684 |
+
"act_code": "P-14.8",
|
| 685 |
+
"act_short": "Plant Protection Act",
|
| 686 |
+
"act_name": "Plant Protection Act",
|
| 687 |
+
"section": "36.3",
|
| 688 |
+
"marginal_note": "Altering, destroying or falsifying mark, label, tag or seal",
|
| 689 |
+
"part": "",
|
| 690 |
+
"division": "",
|
| 691 |
+
"heading": "Prohibitions Respecting Marking and Identification",
|
| 692 |
+
"text": "36.3\n(1) No person shall alter, destroy or falsify a mark, label, tag or seal required under this Act.\n(2) [Possessing or using mark, label, tag or seal] No person shall\n(a) have in their possession or use a mark, label, tag or seal required under this Act that has been altered or falsified; or\n(b) use a mark, label, tag or seal required under this Act for a purpose or in respect of a thing, other than a purpose or a thing provided for in the regulations.",
|
| 693 |
+
"history": "2015, c. 2, s. 106",
|
| 694 |
+
"last_amended": "2015-02-27",
|
| 695 |
+
"current_to": "2019-06-21",
|
| 696 |
+
"citation": "Plant Protection Act, s. 36.3",
|
| 697 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-36.3.html"
|
| 698 |
+
},
|
| 699 |
+
{
|
| 700 |
+
"id": "P-14.8-s36.4",
|
| 701 |
+
"act_code": "P-14.8",
|
| 702 |
+
"act_short": "Plant Protection Act",
|
| 703 |
+
"act_name": "Plant Protection Act",
|
| 704 |
+
"section": "36.4",
|
| 705 |
+
"marginal_note": "Possessing or using misleading mark, label, tag, seal or device",
|
| 706 |
+
"part": "",
|
| 707 |
+
"division": "",
|
| 708 |
+
"heading": "Prohibitions Respecting Marking and Identification",
|
| 709 |
+
"text": "36.4 No person shall have in their possession or use\n(a) any mark, label, tag or seal that so closely resembles one required under this Act that it is likely to be mistaken for it; or\n(b) any device that is designed or adapted to create a mark that so closely resembles a mark required under this Act that it is likely to be mistaken for it.",
|
| 710 |
+
"history": "2015, c. 2, s. 106",
|
| 711 |
+
"last_amended": "2015-02-27",
|
| 712 |
+
"current_to": "2019-06-21",
|
| 713 |
+
"citation": "Plant Protection Act, s. 36.4",
|
| 714 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-36.4.html"
|
| 715 |
+
},
|
| 716 |
+
{
|
| 717 |
+
"id": "P-14.8-s37",
|
| 718 |
+
"act_code": "P-14.8",
|
| 719 |
+
"act_short": "Plant Protection Act",
|
| 720 |
+
"act_name": "Plant Protection Act",
|
| 721 |
+
"section": "37",
|
| 722 |
+
"marginal_note": "Disposition of samples",
|
| 723 |
+
"part": "",
|
| 724 |
+
"division": "",
|
| 725 |
+
"heading": "Samples",
|
| 726 |
+
"text": "37\n(1) A sample taken under this Act or the regulations may be disposed of in such manner as the Minister considers appropriate.\n(2) [Her Majesty not liable] Her Majesty is not liable for any costs, loss or damage resulting from the taking or disposition of a sample under this Act or the regulations.",
|
| 727 |
+
"history": "",
|
| 728 |
+
"last_amended": "2002-12-31",
|
| 729 |
+
"current_to": "2019-06-21",
|
| 730 |
+
"citation": "Plant Protection Act, s. 37",
|
| 731 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-37.html"
|
| 732 |
+
},
|
| 733 |
+
{
|
| 734 |
+
"id": "P-14.8-s38",
|
| 735 |
+
"act_code": "P-14.8",
|
| 736 |
+
"act_short": "Plant Protection Act",
|
| 737 |
+
"act_name": "Plant Protection Act",
|
| 738 |
+
"section": "38",
|
| 739 |
+
"marginal_note": "Her Majesty not liable",
|
| 740 |
+
"part": "",
|
| 741 |
+
"division": "",
|
| 742 |
+
"heading": "Limitation on Liability",
|
| 743 |
+
"text": "38 If a person must, under this Act, do anything or permit an inspector to do anything, Her Majesty in right of Canada is not liable\n(a) for any costs, loss or damage resulting from the compliance; or\n(b) to pay any fee, including any rent or charge, for what is done or permitted to be done.",
|
| 744 |
+
"history": "1990, c. 22, s. 38; 2015, c. 2, s. 107",
|
| 745 |
+
"last_amended": "2015-02-27",
|
| 746 |
+
"current_to": "2019-06-21",
|
| 747 |
+
"citation": "Plant Protection Act, s. 38",
|
| 748 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-38.html"
|
| 749 |
+
},
|
| 750 |
+
{
|
| 751 |
+
"id": "P-14.8-s38.1",
|
| 752 |
+
"act_code": "P-14.8",
|
| 753 |
+
"act_short": "Plant Protection Act",
|
| 754 |
+
"act_name": "Plant Protection Act",
|
| 755 |
+
"section": "38.1",
|
| 756 |
+
"marginal_note": "No liability",
|
| 757 |
+
"part": "",
|
| 758 |
+
"division": "",
|
| 759 |
+
"heading": "Limitation on Liability",
|
| 760 |
+
"text": "38.1 No person who exercises powers or performs duties or functions under this Act is liable in respect of anything done or omitted to be done in good faith in the exercise of those powers or the performance of those duties or functions.",
|
| 761 |
+
"history": "2015, c. 2, s. 107",
|
| 762 |
+
"last_amended": "2015-02-27",
|
| 763 |
+
"current_to": "2019-06-21",
|
| 764 |
+
"citation": "Plant Protection Act, s. 38.1",
|
| 765 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-38.1.html"
|
| 766 |
+
},
|
| 767 |
+
{
|
| 768 |
+
"id": "P-14.8-s39",
|
| 769 |
+
"act_code": "P-14.8",
|
| 770 |
+
"act_short": "Plant Protection Act",
|
| 771 |
+
"act_name": "Plant Protection Act",
|
| 772 |
+
"section": "39",
|
| 773 |
+
"marginal_note": "Compensation for treatment, etc.",
|
| 774 |
+
"part": "",
|
| 775 |
+
"division": "",
|
| 776 |
+
"heading": "Compensation",
|
| 777 |
+
"text": "39\n(1) The Minister may, in accordance with the regulations, order compensation to be paid from the Consolidated Revenue Fund in respect of\n(a) any treatment of a place or any treatment, storage or disposition of a thing required under this Act or the regulations;\n(b) any prohibition or restriction on the use of a place or on the movement of persons or things within, into or out of a place imposed under this Act or the regulations; or\n(c) any prohibition or restriction on the use of a thing or on the sale or other disposition of a thing imposed under this Act or the regulations.\n(2) [Limitation] No compensation is payable under subsection (1) in respect of\n(a) a thing that is imported into Canada or exported from Canada in contravention of this Act or the regulations or a thing that is found to be a pest, to be infested with a pest or to constitute a biological obstacle to the control of a pest when it is inspected on importation or exportation; or\n(b) the prohibition or restriction of the sale or movement of a thing where the sale or movement is prohibited or restricted as a result of an amendment, suspension or revocation of, or a refusal to issue or renew, a permit, certificate or other document that is required under this Act or the regulations.\n(3) [Limitation] No compensation is payable to a person who commits a violation, or an offence under this Act, and claims compensation in respect of any place or thing by means of or in relation to which the violation or offence was committed.",
|
| 778 |
+
"history": "1990, c. 22, s. 39; 1995, c. 40, s. 81; 1997, c. 6, s. 83",
|
| 779 |
+
"last_amended": "2002-12-31",
|
| 780 |
+
"current_to": "2019-06-21",
|
| 781 |
+
"citation": "Plant Protection Act, s. 39",
|
| 782 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-39.html"
|
| 783 |
+
},
|
| 784 |
+
{
|
| 785 |
+
"id": "P-14.8-s40",
|
| 786 |
+
"act_code": "P-14.8",
|
| 787 |
+
"act_short": "Plant Protection Act",
|
| 788 |
+
"act_name": "Plant Protection Act",
|
| 789 |
+
"section": "40",
|
| 790 |
+
"marginal_note": "Appeal",
|
| 791 |
+
"part": "",
|
| 792 |
+
"division": "",
|
| 793 |
+
"heading": "Compensation",
|
| 794 |
+
"text": "40\n(1) A person who claims compensation and is dissatisfied with the Minister’s disposition of the claim may bring an appeal to the Assessor, but the only grounds of appeal are that the failure to award compensation was unreasonable or that the amount awarded was unreasonable.\n(2) [Time limit for bringing appeal] An appeal shall be brought within three months after the claimant receives notification of the Minister’s disposition of the claim, or within such longer period as the Assessor may in any case for special reasons allow.",
|
| 795 |
+
"history": "",
|
| 796 |
+
"last_amended": "2002-12-31",
|
| 797 |
+
"current_to": "2019-06-21",
|
| 798 |
+
"citation": "Plant Protection Act, s. 40",
|
| 799 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-40.html"
|
| 800 |
+
},
|
| 801 |
+
{
|
| 802 |
+
"id": "P-14.8-s41",
|
| 803 |
+
"act_code": "P-14.8",
|
| 804 |
+
"act_short": "Plant Protection Act",
|
| 805 |
+
"act_name": "Plant Protection Act",
|
| 806 |
+
"section": "41",
|
| 807 |
+
"marginal_note": "Powers of Assessor",
|
| 808 |
+
"part": "",
|
| 809 |
+
"division": "",
|
| 810 |
+
"heading": "Compensation",
|
| 811 |
+
"text": "41\n(1) On hearing an appeal, the Assessor may confirm or vary the Minister’s disposition of the claim or refer the matter back to the Minister for such further action as the Assessor may direct.\n(2) [Costs] Costs may be awarded to or against the Minister in an appeal.\n(3) [Decisions final] The decision of the Assessor on an appeal is final and conclusive and not subject to appeal to or review by any court.",
|
| 812 |
+
"history": "",
|
| 813 |
+
"last_amended": "2002-12-31",
|
| 814 |
+
"current_to": "2019-06-21",
|
| 815 |
+
"citation": "Plant Protection Act, s. 41",
|
| 816 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-41.html"
|
| 817 |
+
},
|
| 818 |
+
{
|
| 819 |
+
"id": "P-14.8-s42",
|
| 820 |
+
"act_code": "P-14.8",
|
| 821 |
+
"act_short": "Plant Protection Act",
|
| 822 |
+
"act_name": "Plant Protection Act",
|
| 823 |
+
"section": "42",
|
| 824 |
+
"marginal_note": "Sittings and hearings",
|
| 825 |
+
"part": "",
|
| 826 |
+
"division": "",
|
| 827 |
+
"heading": "Compensation",
|
| 828 |
+
"text": "42\n(1) The Assessor may sit and hear appeals at any place or places and shall arrange for sittings and hearings as may be required.\n(2) [Travel allowances] The Assessor is entitled to be paid such travel allowances as are payable for the attendances of a judge of the Federal Court under the Judges Act.",
|
| 829 |
+
"history": "",
|
| 830 |
+
"last_amended": "2002-12-31",
|
| 831 |
+
"current_to": "2019-06-21",
|
| 832 |
+
"citation": "Plant Protection Act, s. 42",
|
| 833 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-42.html"
|
| 834 |
+
},
|
| 835 |
+
{
|
| 836 |
+
"id": "P-14.8-s43",
|
| 837 |
+
"act_code": "P-14.8",
|
| 838 |
+
"act_short": "Plant Protection Act",
|
| 839 |
+
"act_name": "Plant Protection Act",
|
| 840 |
+
"section": "43",
|
| 841 |
+
"marginal_note": "Procedure",
|
| 842 |
+
"part": "",
|
| 843 |
+
"division": "",
|
| 844 |
+
"heading": "Compensation",
|
| 845 |
+
"text": "43\n(1) Subject to the approval of the Governor in Council, the Assessor may make rules respecting the conduct of appeals and the procedure for the bringing of appeals.\n(2) [Transitional] Subject to any rules made under subsection (1), all rules respecting the conduct of appeals and the procedure for bringing appeals to the Assessor made under section 18 of the Pesticide Residue Compensation Act that are in force at the time this section comes into force shall, to the extent that they are not inconsistent with sections 40 to 42, apply in respect of appeals brought under section 40.\n(3) [Registrar] The functions of the registrar of appeals and any other person necessary to carry out the purposes of sections 40 to 42 shall be carried out by the persons who carry out similar functions under Part II of the Pesticide Residue Compensation Act.",
|
| 846 |
+
"history": "1990, c. 22, s. 43; 2001, c. 4, s. 173(F)",
|
| 847 |
+
"last_amended": "2002-12-31",
|
| 848 |
+
"current_to": "2019-06-21",
|
| 849 |
+
"citation": "Plant Protection Act, s. 43",
|
| 850 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-43.html"
|
| 851 |
+
},
|
| 852 |
+
{
|
| 853 |
+
"id": "P-14.8-s44",
|
| 854 |
+
"act_code": "P-14.8",
|
| 855 |
+
"act_short": "Plant Protection Act",
|
| 856 |
+
"act_name": "Plant Protection Act",
|
| 857 |
+
"section": "44",
|
| 858 |
+
"marginal_note": "Fees, charges and costs for inspections, etc.",
|
| 859 |
+
"part": "",
|
| 860 |
+
"division": "",
|
| 861 |
+
"heading": "Fees, Charges and Costs",
|
| 862 |
+
"text": "44\n(1) Her Majesty may recover from any person referred to in subsection (2) any prescribed fees or charges and any costs incurred by Her Majesty in relation to anything required or authorized under this Act or the regulations, including, without limiting the generality of the foregoing,\n(a) the inspection, treatment, testing or analysis of a place or thing, or the quarantine, storage, removal, disposal or return of a thing, required or authorized under this Act or the regulations; and\n(b) the seizure, confiscation, forfeiture, detention or disposal of a thing under this Act or the regulations.\n(2) [Persons liable] The fees, charges and costs are recoverable jointly and severally from the owner or occupier of the place or owner of the thing and from the person having the possession, care or control of it immediately before its inspection, treatment, testing, analysis, quarantine, storage, removal, return or disposal or, in the case of a thing seized, confiscated, forfeited, detained or disposed of under this Act or the regulations, immediately before its seizure, confiscation, forfeiture, detention or disposal.",
|
| 863 |
+
"history": "",
|
| 864 |
+
"last_amended": "2002-12-31",
|
| 865 |
+
"current_to": "2019-06-21",
|
| 866 |
+
"citation": "Plant Protection Act, s. 44",
|
| 867 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-44.html"
|
| 868 |
+
},
|
| 869 |
+
{
|
| 870 |
+
"id": "P-14.8-s45",
|
| 871 |
+
"act_code": "P-14.8",
|
| 872 |
+
"act_short": "Plant Protection Act",
|
| 873 |
+
"act_name": "Plant Protection Act",
|
| 874 |
+
"section": "45",
|
| 875 |
+
"marginal_note": "Fees, charges and costs for requested services, etc.",
|
| 876 |
+
"part": "",
|
| 877 |
+
"division": "",
|
| 878 |
+
"heading": "Fees, Charges and Costs",
|
| 879 |
+
"text": "45 Her Majesty may recover from any person who requests a service or the issue, renewal or amendment of a permit, certificate or other document under this Act or the regulations any prescribed fee or charge and any costs incurred by Her Majesty in relation to rendering the service or issuing, renewing or amending the document.",
|
| 880 |
+
"history": "",
|
| 881 |
+
"last_amended": "2002-12-31",
|
| 882 |
+
"current_to": "2019-06-21",
|
| 883 |
+
"citation": "Plant Protection Act, s. 45",
|
| 884 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-45.html"
|
| 885 |
+
},
|
| 886 |
+
{
|
| 887 |
+
"id": "P-14.8-s46",
|
| 888 |
+
"act_code": "P-14.8",
|
| 889 |
+
"act_short": "Plant Protection Act",
|
| 890 |
+
"act_name": "Plant Protection Act",
|
| 891 |
+
"section": "46",
|
| 892 |
+
"marginal_note": "Unpaid fees, charges or costs",
|
| 893 |
+
"part": "",
|
| 894 |
+
"division": "",
|
| 895 |
+
"heading": "Fees, Charges and Costs",
|
| 896 |
+
"text": "46 Any fees, charges or costs that are recoverable by Her Majesty under this Act or the regulations may be recovered as a debt due to Her Majesty.",
|
| 897 |
+
"history": "1990, c. 22, s. 46; 1993, c. 34, s. 102",
|
| 898 |
+
"last_amended": "2002-12-31",
|
| 899 |
+
"current_to": "2019-06-21",
|
| 900 |
+
"citation": "Plant Protection Act, s. 46",
|
| 901 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-46.html"
|
| 902 |
+
},
|
| 903 |
+
{
|
| 904 |
+
"id": "P-14.8-s47",
|
| 905 |
+
"act_code": "P-14.8",
|
| 906 |
+
"act_short": "Plant Protection Act",
|
| 907 |
+
"act_name": "Plant Protection Act",
|
| 908 |
+
"section": "47",
|
| 909 |
+
"marginal_note": "Regulations",
|
| 910 |
+
"part": "",
|
| 911 |
+
"division": "",
|
| 912 |
+
"heading": "Regulations",
|
| 913 |
+
"text": "47\n(1) The Governor in Council may make regulations for carrying out the purposes and provisions of this Act and prescribing anything that is to be prescribed under this Act, including regulations\n(a) prohibiting or regulating the carrying out of any activity in respect of pests and of other things that are or could be infested with pests or that constitute or could constitute biological obstacles to the control of pests, including their importation and admission into Canada, their exportation from Canada and their movement within Canada;\n(a.1) for the purposes of paragraph 7(b),\n(i) respecting the circumstances in which a thing must be presented to an inspector, and\n(ii) imposing conditions on an inspector’s authority to require that a thing be presented;\n(b) governing the issue, renewal, amendment, suspension and revocation of permits, certificates or other documents on such terms and conditions as may be required for the purposes of this Act;\n(b.1) respecting authorizations provided for in section 47.2, including the conditions to which they may be subject and their amendment, suspension or revocation;\n(c) prohibiting or regulating the importation of food or garbage into Canada;\n(d) regulating any activity referred to in section 6;\n(e) designating places of entry where things may be presented for inspection and admittance into Canada;\n(f) governing investigations and surveys to detect pests and to identify areas of infestation;\n(g) respecting the declaration of things infested with pests and things free of infestation;\n(h) respecting the declaration under sections 11, 12 and 15 of places that are infested;\n(i) prohibiting or regulating the use of places that are, or are suspected of being, infested with pests and of things that are, or are suspected of being, pests or infested with pests or that constitute or could constitute biological obstacles to the control of pests;\n(j) governing the quarantine of things;\n(k) for the establishment of inspection and treatment centres and quarantine stations;\n(l) governing the disposition of things that are, or are suspected of being, pests or infested with pests or that constitute or could constitute biological obstacles to the control of pests;\n(m) respecting the detention or disposition of things seized, forfeited or confiscated under this Act;\n(n) governing the treatment or manner of treatment to be administered to places or things and requiring persons to administer or to arrange the administration of the treatment;\n(o) governing the removal from places where treatment is administered of persons or things that present obstacles to the treatment or that may be adversely affected by it;\n(p) requiring things to be marked or identified or to have affixed to them labels, tags, seals or other devices and prohibiting the removal, breaking, tampering with or altering of those marks, labels, tags, seals or other devices;\n(q) prescribing the terms and conditions on which compensation may be ordered under section 39 and the maximum levels of compensation;\n(r) requiring documents to be furnished by inspectors;\n(r.1) requiring persons to prepare, keep or maintain documents and to provide the Minister or an inspector with, or with access to, those documents, and respecting\n(i) the information in those documents,\n(ii) the manner in which they are to be prepared, kept or maintained,\n(iii) the place where they are to be kept or maintained, and\n(iv) the manner in which they are to be provided or access to them is to be provided;\n(r.2) requiring persons to take or keep samples of any thing and to provide the Minister or an inspector with, or with access to, those samples, and respecting the manner in which those samples are to be taken or kept and the manner in which they are to be provided or access to them is to be provided;\n(s) prescribing any fees or charges, or the manner of calculating any fees or charges, required for carrying out the purposes and provisions of this Act or the regulations; and\n(t) exempting, with or without conditions, any thing, or a person or activity in respect of a thing, from the application of this Act or the regulations or a provision of this Act or the regulations.\n(2) [Paragraph (1)(a) — importation] Regulations made under paragraph (1)(a) may, among other things, establish preclearance or in-transit requirements for any imported thing or anything imported with it.\n(3) [Paragraph (1)(a) — prohibiting or restricting activities] Regulations made under paragraph (1)(a) may, among other things, authorize the Minister or an inspector to prohibit or restrict the carrying out of any activity in respect of a thing if the Minister or inspector has reasonable grounds to believe that the thing is a pest, is infested with a pest or constitutes a biological obstacle to the control of a pest, and prescribe conditions for the exercise of the authority.\n(4) [Paragraph (1)(i)] Regulations made under paragraph (1)(i) may, among other things, authorize the Minister or an inspector to prohibit or restrict the use of a place or a thing if the Minister or inspector has reasonable grounds to believe that the place is infested with a pest or that the thing is a pest, is infested with a pest or constitutes a biological obstacle to the control of a pest, and prescribe conditions for the exercise of the authority.\n(5) [Paragraph (1)(r.1)] Regulations made under paragraph (1)(r.1) may, among other things, require persons who conduct any activity regulated under this Act and who become aware that a thing that is a pest, that is or could be infested with a pest or that constitutes or could constitute a biological obstacle to the control of a pest presents a risk of harm to human, animal or plant health or the environment or does not meet the requirements of the regulations to provide written notice to that effect to the Minister or an inspector.",
|
| 914 |
+
"history": "1990, c. 22, s. 47; 1993, c. 34, s. 103; 2015, c. 2, s. 108",
|
| 915 |
+
"last_amended": "2015-02-27",
|
| 916 |
+
"current_to": "2019-06-21",
|
| 917 |
+
"citation": "Plant Protection Act, s. 47",
|
| 918 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-47.html"
|
| 919 |
+
},
|
| 920 |
+
{
|
| 921 |
+
"id": "P-14.8-s47.1",
|
| 922 |
+
"act_code": "P-14.8",
|
| 923 |
+
"act_short": "Plant Protection Act",
|
| 924 |
+
"act_name": "Plant Protection Act",
|
| 925 |
+
"section": "47.1",
|
| 926 |
+
"marginal_note": "Incorporation by reference",
|
| 927 |
+
"part": "",
|
| 928 |
+
"division": "",
|
| 929 |
+
"heading": "Incorporation by Reference",
|
| 930 |
+
"text": "47.1\n(1) A regulation made under subsection 47(1) may incorporate by reference any document, regardless of its source, either as it exists on a particular date or as it is amended from time to time.\n(2) [Accessibility] The Minister must ensure that any document that is incorporated by reference in a regulation made under subsection 47(1), including any amendments to the document, is accessible.\n(3) [Defence] A person is not liable to be found guilty of an offence or subjected to an administrative sanction for any contravention in respect of which a document that is incorporated by reference in a regulation made under subsection 47(1) is relevant unless, at the time of the alleged contravention, the document was accessible as required by subsection (2) or it was otherwise accessible to the person.\n(4) [No registration or publication] For greater certainty, a document that is incorporated by reference in a regulation made under subsection 47(1) is not required to be transmitted for registration or published in the Canada Gazette by reason only that it is incorporated by reference.",
|
| 931 |
+
"history": "2015, c. 2, s. 109",
|
| 932 |
+
"last_amended": "2015-02-27",
|
| 933 |
+
"current_to": "2019-06-21",
|
| 934 |
+
"citation": "Plant Protection Act, s. 47.1",
|
| 935 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-47.1.html"
|
| 936 |
+
},
|
| 937 |
+
{
|
| 938 |
+
"id": "P-14.8-s47.2",
|
| 939 |
+
"act_code": "P-14.8",
|
| 940 |
+
"act_short": "Plant Protection Act",
|
| 941 |
+
"act_name": "Plant Protection Act",
|
| 942 |
+
"section": "47.2",
|
| 943 |
+
"marginal_note": "Authorizations",
|
| 944 |
+
"part": "",
|
| 945 |
+
"division": "",
|
| 946 |
+
"heading": "Authorizations",
|
| 947 |
+
"text": "47.2\n(1) The President of the Canadian Food Inspection Agency may, subject to the regulations, authorize any person to perform any activity that he or she specifies, subject to any conditions that he or she considers appropriate, if the activity is related to ensuring that a thing is not a pest, is not or could not be infested with a pest or does not or could not constitute a biological obstacle to the control of a pest.\n(2) [Not transferable] The authorization is not transferable.\n(3) [Amendment, suspension and revocation] The President may, subject to the regulations, amend, suspend or revoke the authorization.",
|
| 948 |
+
"history": "2015, c. 2, s. 109",
|
| 949 |
+
"last_amended": "2015-02-27",
|
| 950 |
+
"current_to": "2019-06-21",
|
| 951 |
+
"citation": "Plant Protection Act, s. 47.2",
|
| 952 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-47.2.html"
|
| 953 |
+
},
|
| 954 |
+
{
|
| 955 |
+
"id": "P-14.8-s47.3",
|
| 956 |
+
"act_code": "P-14.8",
|
| 957 |
+
"act_short": "Plant Protection Act",
|
| 958 |
+
"act_name": "Plant Protection Act",
|
| 959 |
+
"section": "47.3",
|
| 960 |
+
"marginal_note": "Non-application of Statutory Instruments Act",
|
| 961 |
+
"part": "",
|
| 962 |
+
"division": "",
|
| 963 |
+
"heading": "General",
|
| 964 |
+
"text": "47.3 The Statutory Instruments Act does not apply in respect of a notice referred to in section 49.",
|
| 965 |
+
"history": "2015, c. 2, s. 109",
|
| 966 |
+
"last_amended": "2015-02-27",
|
| 967 |
+
"current_to": "2019-06-21",
|
| 968 |
+
"citation": "Plant Protection Act, s. 47.3",
|
| 969 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-47.3.html"
|
| 970 |
+
},
|
| 971 |
+
{
|
| 972 |
+
"id": "P-14.8-s48",
|
| 973 |
+
"act_code": "P-14.8",
|
| 974 |
+
"act_short": "Plant Protection Act",
|
| 975 |
+
"act_name": "Plant Protection Act",
|
| 976 |
+
"section": "48",
|
| 977 |
+
"marginal_note": "General offence",
|
| 978 |
+
"part": "",
|
| 979 |
+
"division": "",
|
| 980 |
+
"heading": "Offences and Punishment",
|
| 981 |
+
"text": "48\n(1) Every person who contravenes any provision of this Act, other than section 9, or the regulations or who refuses or neglects to perform any duty imposed by or under the Act or the regulations is guilty of\n(a) an offence punishable on summary conviction and liable to a fine not exceeding fifty thousand dollars or to imprisonment for a term not exceeding six months, or to both; or\n(b) an indictable offence and liable to a fine not exceeding two hundred and fifty thousand dollars or to imprisonment for a term not exceeding two years, or to both.\n(2) [Possession of illegal imports] Every person who contravenes section 9 is guilty of an offence punishable on summary conviction and liable to a fine not exceeding fifty thousand dollars.\n(3) [No imprisonment] Notwithstanding the Criminal Code, no person shall be committed to prison for default of payment of a fine imposed under subsection (2).",
|
| 982 |
+
"history": "1990, c. 22, s. 48; 1995, c. 40, s. 82; 2015, c. 2, s. 110(F)",
|
| 983 |
+
"last_amended": "2015-02-27",
|
| 984 |
+
"current_to": "2019-06-21",
|
| 985 |
+
"citation": "Plant Protection Act, s. 48",
|
| 986 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-48.html"
|
| 987 |
+
},
|
| 988 |
+
{
|
| 989 |
+
"id": "P-14.8-s49",
|
| 990 |
+
"act_code": "P-14.8",
|
| 991 |
+
"act_short": "Plant Protection Act",
|
| 992 |
+
"act_name": "Plant Protection Act",
|
| 993 |
+
"section": "49",
|
| 994 |
+
"marginal_note": "Failure to comply with notices",
|
| 995 |
+
"part": "",
|
| 996 |
+
"division": "",
|
| 997 |
+
"heading": "Offences and Punishment",
|
| 998 |
+
"text": "49 Every person who fails to comply with a notice communicated to the person under section 6, 8, 24, 30 or 36 or the regulations is guilty of\n(a) an offence punishable on summary conviction and liable to a fine not exceeding fifty thousand dollars or to imprisonment for a term not exceeding six months, or to both; or\n(b) an indictable offence and liable to a fine not exceeding two hundred and fifty thousand dollars or to imprisonment for a term not exceeding two years, or to both.",
|
| 999 |
+
"history": "1990, c. 22, s. 49; 1995, c. 40, s. 83",
|
| 1000 |
+
"last_amended": "2002-12-31",
|
| 1001 |
+
"current_to": "2019-06-21",
|
| 1002 |
+
"citation": "Plant Protection Act, s. 49",
|
| 1003 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-49.html"
|
| 1004 |
+
},
|
| 1005 |
+
{
|
| 1006 |
+
"id": "P-14.8-s50",
|
| 1007 |
+
"act_code": "P-14.8",
|
| 1008 |
+
"act_short": "Plant Protection Act",
|
| 1009 |
+
"act_name": "Plant Protection Act",
|
| 1010 |
+
"section": "50",
|
| 1011 |
+
"marginal_note": "Contravention of prohibition or restriction",
|
| 1012 |
+
"part": "",
|
| 1013 |
+
"division": "",
|
| 1014 |
+
"heading": "Offences and Punishment",
|
| 1015 |
+
"text": "50\n(1) Every person who contravenes a prohibition or restriction imposed under subsection 13(1) or 15(3) is guilty of\n(a) an offence punishable on summary conviction and liable to a fine not exceeding fifty thousand dollars or to imprisonment for a term not exceeding six months, or to both; or\n(b) an indictable offence and liable to a fine not exceeding two hundred and fifty thousand dollars or to imprisonment for a term not exceeding two years, or to both.\n(2) [Defence] No person shall be found guilty of an offence consisting of a contravention of a prohibition or restriction imposed by the Minister or an inspector unless it is proved that, at the time of the alleged contravention,\n(a) the person had been notified of the prohibition or restriction; or\n(b) reasonable steps had been taken to bring the substance of the prohibition or restriction to the notice of persons likely to be affected by it.",
|
| 1016 |
+
"history": "1990, c. 22, s. 50; 1995, c. 40, s. 84",
|
| 1017 |
+
"last_amended": "2002-12-31",
|
| 1018 |
+
"current_to": "2019-06-21",
|
| 1019 |
+
"citation": "Plant Protection Act, s. 50",
|
| 1020 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-50.html"
|
| 1021 |
+
},
|
| 1022 |
+
{
|
| 1023 |
+
"id": "P-14.8-s51",
|
| 1024 |
+
"act_code": "P-14.8",
|
| 1025 |
+
"act_short": "Plant Protection Act",
|
| 1026 |
+
"act_name": "Plant Protection Act",
|
| 1027 |
+
"section": "51",
|
| 1028 |
+
"marginal_note": "Limitation period or prescription",
|
| 1029 |
+
"part": "",
|
| 1030 |
+
"division": "",
|
| 1031 |
+
"heading": "Offences and Punishment",
|
| 1032 |
+
"text": "51 Summary conviction proceedings for an offence under this Act may be instituted no later than two years after the day on which the subject matter of the proceedings arises.",
|
| 1033 |
+
"history": "1990, c. 22, s. 51; 2015, c. 2, s. 111",
|
| 1034 |
+
"last_amended": "2015-02-27",
|
| 1035 |
+
"current_to": "2019-06-21",
|
| 1036 |
+
"citation": "Plant Protection Act, s. 51",
|
| 1037 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-51.html"
|
| 1038 |
+
},
|
| 1039 |
+
{
|
| 1040 |
+
"id": "P-14.8-s52",
|
| 1041 |
+
"act_code": "P-14.8",
|
| 1042 |
+
"act_short": "Plant Protection Act",
|
| 1043 |
+
"act_name": "Plant Protection Act",
|
| 1044 |
+
"section": "52",
|
| 1045 |
+
"marginal_note": "Ticket offences",
|
| 1046 |
+
"part": "",
|
| 1047 |
+
"division": "",
|
| 1048 |
+
"heading": "Offences and Punishment",
|
| 1049 |
+
"text": "52 The Governor in Council may make regulations designating the contravention of any provision of this Act or the regulations as an offence with respect to which, notwithstanding the provisions of the Criminal Code,\n(a) an inspector may lay an information and issue and serve a summons by completing a ticket in the prescribed form, affixing the inspector’s signature thereto and delivering the ticket to the person alleged to have committed the offence specified therein at the time the offence is alleged to have been committed, or\n(b) the summons may be served on an accused by mailing the summons to the accused at the accused’s latest known address,\nand any regulations made under this section shall establish a procedure for voluntarily entering a plea of guilty and paying a fine in respect of each offence to which the regulations relate and shall prescribe the amount of the fine to be paid in respect of each offence.",
|
| 1050 |
+
"history": "",
|
| 1051 |
+
"last_amended": "2002-12-31",
|
| 1052 |
+
"current_to": "2019-06-21",
|
| 1053 |
+
"citation": "Plant Protection Act, s. 52",
|
| 1054 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-52.html"
|
| 1055 |
+
},
|
| 1056 |
+
{
|
| 1057 |
+
"id": "P-14.8-s53",
|
| 1058 |
+
"act_code": "P-14.8",
|
| 1059 |
+
"act_short": "Plant Protection Act",
|
| 1060 |
+
"act_name": "Plant Protection Act",
|
| 1061 |
+
"section": "53",
|
| 1062 |
+
"marginal_note": "Recovery of fines",
|
| 1063 |
+
"part": "",
|
| 1064 |
+
"division": "",
|
| 1065 |
+
"heading": "Offences and Punishment",
|
| 1066 |
+
"text": "53 Where a person is convicted of an offence under this Act and a fine that is imposed as punishment is not paid when required, the prosecutor may, by filing the conviction, enter as a judgment the amount of the fine and costs, if any, in the superior court of the province in which the trial was held, and the judgment is enforceable against the convicted person in the same manner as if it were a judgment obtained by Her Majesty in right of Canada against the person in that court in civil proceedings.",
|
| 1067 |
+
"history": "",
|
| 1068 |
+
"last_amended": "2002-12-31",
|
| 1069 |
+
"current_to": "2019-06-21",
|
| 1070 |
+
"citation": "Plant Protection Act, s. 53",
|
| 1071 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-53.html"
|
| 1072 |
+
},
|
| 1073 |
+
{
|
| 1074 |
+
"id": "P-14.8-s54",
|
| 1075 |
+
"act_code": "P-14.8",
|
| 1076 |
+
"act_short": "Plant Protection Act",
|
| 1077 |
+
"act_name": "Plant Protection Act",
|
| 1078 |
+
"section": "54",
|
| 1079 |
+
"marginal_note": "Parties to offence",
|
| 1080 |
+
"part": "",
|
| 1081 |
+
"division": "",
|
| 1082 |
+
"heading": "Offences and Punishment",
|
| 1083 |
+
"text": "54 If a person other than an individual commits an offence under this Act, any of the person’s directors, officers or agents or mandataries who directs, authorizes, assents to or acquiesces or participates in the commission of the offence is a party to the offence and is liable on conviction to the punishment provided for by this Act, even if the person is not prosecuted for the offence.",
|
| 1084 |
+
"history": "1990, c. 22, s. 54; 2015, c. 2, s. 112",
|
| 1085 |
+
"last_amended": "2015-02-27",
|
| 1086 |
+
"current_to": "2019-06-21",
|
| 1087 |
+
"citation": "Plant Protection Act, s. 54",
|
| 1088 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-54.html"
|
| 1089 |
+
},
|
| 1090 |
+
{
|
| 1091 |
+
"id": "P-14.8-s55",
|
| 1092 |
+
"act_code": "P-14.8",
|
| 1093 |
+
"act_short": "Plant Protection Act",
|
| 1094 |
+
"act_name": "Plant Protection Act",
|
| 1095 |
+
"section": "55",
|
| 1096 |
+
"marginal_note": "Proof of offence",
|
| 1097 |
+
"part": "",
|
| 1098 |
+
"division": "",
|
| 1099 |
+
"heading": "Offences and Punishment",
|
| 1100 |
+
"text": "55 In a prosecution for an offence under this Act, it is sufficient proof of the offence to establish that it was committed by an employee or an agent or mandatary of the accused, even if the employee or the agent or mandatary is not identified or prosecuted for the offence, unless the accused establishes that the offence was committed without the knowledge or consent of the accused and that the accused exercised all due diligence to prevent its commission.",
|
| 1101 |
+
"history": "1990, c. 22, s. 55; 2015, c. 2, s. 112",
|
| 1102 |
+
"last_amended": "2015-02-27",
|
| 1103 |
+
"current_to": "2019-06-21",
|
| 1104 |
+
"citation": "Plant Protection Act, s. 55",
|
| 1105 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-55.html"
|
| 1106 |
+
},
|
| 1107 |
+
{
|
| 1108 |
+
"id": "P-14.8-s56",
|
| 1109 |
+
"act_code": "P-14.8",
|
| 1110 |
+
"act_short": "Plant Protection Act",
|
| 1111 |
+
"act_name": "Plant Protection Act",
|
| 1112 |
+
"section": "56",
|
| 1113 |
+
"marginal_note": "Place of trial",
|
| 1114 |
+
"part": "",
|
| 1115 |
+
"division": "",
|
| 1116 |
+
"heading": "Offences and Punishment",
|
| 1117 |
+
"text": "56 A prosecution for an offence under this Act may be instituted, heard and determined in the place where\n(a) the offence was committed or the subject-matter of the prosecution arose;\n(b) the accused was apprehended; or\n(c) the accused happens to be, or is carrying on business.",
|
| 1118 |
+
"history": "",
|
| 1119 |
+
"last_amended": "2002-12-31",
|
| 1120 |
+
"current_to": "2019-06-21",
|
| 1121 |
+
"citation": "Plant Protection Act, s. 56",
|
| 1122 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-56.html"
|
| 1123 |
+
},
|
| 1124 |
+
{
|
| 1125 |
+
"id": "P-14.8-s57",
|
| 1126 |
+
"act_code": "P-14.8",
|
| 1127 |
+
"act_short": "Plant Protection Act",
|
| 1128 |
+
"act_name": "Plant Protection Act",
|
| 1129 |
+
"section": "57",
|
| 1130 |
+
"marginal_note": "Certificates and reports",
|
| 1131 |
+
"part": "",
|
| 1132 |
+
"division": "",
|
| 1133 |
+
"heading": "Evidence",
|
| 1134 |
+
"text": "57\n(1) In any proceedings for a violation, or for an offence under this Act, a declaration, certificate, report or other document of the Minister or an inspector, purporting to have been signed by the Minister or the inspector, is admissible in evidence without proof of the signature or official character of the person appearing to have signed it and, in the absence of evidence to the contrary, is proof of the matters asserted in it.\n(2) [Copies of documents] In any proceedings for a violation, or for an offence under this Act, a copy of or an extract from any record or other document that is made by the Minister or an inspector under this Act or the regulations and that appears to have been certified under the signature of the Minister or the inspector as a true copy or extract is admissible in evidence without proof of the signature or official character of the person appearing to have signed it and, in the absence of evidence to the contrary, has the same probative force as the original would have if it were proved in the ordinary way.\n(3) [Presumed date of issue] Any document referred to in subsection (1) or (2) shall, in the absence of evidence to the contrary, be deemed to have been issued on the date that it bears.\n(4) [Notice] No declaration, certificate, report, copy, extract or other document referred to in this section shall be received in evidence unless the party intending to produce it has, before the trial, served on the party against whom it is intended to be produced reasonable notice of that intention, together with a duplicate of the declaration, certificate, report, copy, extract or other document.",
|
| 1135 |
+
"history": "1990, c. 22, s. 57; 1995, c. 40, s. 85",
|
| 1136 |
+
"last_amended": "2002-12-31",
|
| 1137 |
+
"current_to": "2019-06-21",
|
| 1138 |
+
"citation": "Plant Protection Act, s. 57",
|
| 1139 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-57.html"
|
| 1140 |
+
},
|
| 1141 |
+
{
|
| 1142 |
+
"id": "P-14.8-s58",
|
| 1143 |
+
"act_code": "P-14.8",
|
| 1144 |
+
"act_short": "Plant Protection Act",
|
| 1145 |
+
"act_name": "Plant Protection Act",
|
| 1146 |
+
"section": "58",
|
| 1147 |
+
"marginal_note": "Orders continued",
|
| 1148 |
+
"part": "",
|
| 1149 |
+
"division": "",
|
| 1150 |
+
"heading": "Transitional",
|
| 1151 |
+
"text": "58 Any orders made under section 8 of the Plant Quarantine Act and in force immediately before the repeal of that Act by section 59 of this Act shall continue in force as if they were orders made under subsection 15(3) of this Act.",
|
| 1152 |
+
"history": "",
|
| 1153 |
+
"last_amended": "2002-12-31",
|
| 1154 |
+
"current_to": "2019-06-21",
|
| 1155 |
+
"citation": "Plant Protection Act, s. 58",
|
| 1156 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-58.html"
|
| 1157 |
+
},
|
| 1158 |
+
{
|
| 1159 |
+
"id": "P-14.8-s59",
|
| 1160 |
+
"act_code": "P-14.8",
|
| 1161 |
+
"act_short": "Plant Protection Act",
|
| 1162 |
+
"act_name": "Plant Protection Act",
|
| 1163 |
+
"section": "59",
|
| 1164 |
+
"marginal_note": "",
|
| 1165 |
+
"part": "",
|
| 1166 |
+
"division": "",
|
| 1167 |
+
"heading": "Repeal",
|
| 1168 |
+
"text": "59 [Repeal]",
|
| 1169 |
+
"history": "",
|
| 1170 |
+
"last_amended": "2002-12-31",
|
| 1171 |
+
"current_to": "2019-06-21",
|
| 1172 |
+
"citation": "Plant Protection Act, s. 59",
|
| 1173 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-59.html"
|
| 1174 |
+
},
|
| 1175 |
+
{
|
| 1176 |
+
"id": "P-14.8-s*60",
|
| 1177 |
+
"act_code": "P-14.8",
|
| 1178 |
+
"act_short": "Plant Protection Act",
|
| 1179 |
+
"act_name": "Plant Protection Act",
|
| 1180 |
+
"section": "*60",
|
| 1181 |
+
"marginal_note": "Coming into force",
|
| 1182 |
+
"part": "",
|
| 1183 |
+
"division": "",
|
| 1184 |
+
"heading": "Coming into Force",
|
| 1185 |
+
"text": "*60 This Act or any provision thereof shall come into force on a day or days to be fixed by order of the Governor in Council.\n* [Note: Act in force October 1, 1990, see SI/90-110.]",
|
| 1186 |
+
"history": "",
|
| 1187 |
+
"last_amended": "2002-12-31",
|
| 1188 |
+
"current_to": "2019-06-21",
|
| 1189 |
+
"citation": "Plant Protection Act, s. *60",
|
| 1190 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-14.8/section-*60.html"
|
| 1191 |
+
}
|
| 1192 |
+
]
|
data/processed/P-21.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/processed/P-24.501.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/processed/P-33.01.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/processed/P-36.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/processed/Q-1.1.json
ADDED
|
@@ -0,0 +1,1532 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"id": "Q-1.1-s1",
|
| 4 |
+
"act_code": "Q-1.1",
|
| 5 |
+
"act_short": "Quarantine Act",
|
| 6 |
+
"act_name": "Quarantine Act",
|
| 7 |
+
"section": "1",
|
| 8 |
+
"marginal_note": "Short title",
|
| 9 |
+
"part": "",
|
| 10 |
+
"division": "",
|
| 11 |
+
"heading": "Short Title",
|
| 12 |
+
"text": "1 This Act may be cited as the Quarantine Act.",
|
| 13 |
+
"history": "",
|
| 14 |
+
"last_amended": "2006-12-12",
|
| 15 |
+
"current_to": "2024-04-01",
|
| 16 |
+
"citation": "Quarantine Act, s. 1",
|
| 17 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-1.html"
|
| 18 |
+
},
|
| 19 |
+
{
|
| 20 |
+
"id": "Q-1.1-s2",
|
| 21 |
+
"act_code": "Q-1.1",
|
| 22 |
+
"act_short": "Quarantine Act",
|
| 23 |
+
"act_name": "Quarantine Act",
|
| 24 |
+
"section": "2",
|
| 25 |
+
"marginal_note": "Definitions",
|
| 26 |
+
"part": "",
|
| 27 |
+
"division": "",
|
| 28 |
+
"heading": "Interpretation",
|
| 29 |
+
"text": "2 The following definitions apply in this Act.\ncommunicable disease means a human disease that is caused by an infectious agent or a biological toxin and poses a risk of significant harm to public health, or a disease listed in the schedule, and includes an infectious agent that causes a communicable disease. (maladie transmissible)\nconveyance means a watercraft, aircraft, train, motor vehicle, trailer or other means of transportation, including a cargo container, that arrives in Canada or is in the process of departing from Canada. (véhicule)\ndeparture point means any point designated by the Minister under section 10. (point de sortie)\nentry point means a point designated by the Minister under section 9 or a point where a customs office, within the meaning of subsection 2(1) of the Customs Act, is located. (point d’entrée)\nhealth assessment means an evaluation of the relevant medical history and the travel history of a traveller and a physical examination, including an examination of the traveller’s head, neck and extremities and the measurement of vital signs such as the traveller’s temperature, heart rate and respiratory rate. (contrôle médical)\nmedical examination includes ascertaining the relevant medical history and the travel history of the person being examined, the conduct of a physical examination and any laboratory tests or radiographic or diagnostic tests that are required to make a determination of whether the person might have a communicable disease. (examen médical)\nmedical practitioner means a person who is entitled to practise medicine by the laws of a province. (médecin)\nMinister means the Minister of Health. (ministre)\noperator means any person in charge of a conveyance, and includes the conveyance crew. (conducteur)\nowner, other than in section 43, includes a lessee. (propriétaire)\npeace officer means a person referred to in paragraphs (c) and (g) of the definition peace officer in section 2 of the Criminal Code. (agent de la paix)\nprescribed means prescribed by regulation. (Version anglaise seulement)\nquarantine facility means any place that is used for the detention of a traveller. (installation de quarantaine)\nquarantine station means any place that is used for the administration and enforcement of this Act. (poste de quarantaine)\nscreening officer means a person designated as a screening officer under subsection 5(1) or an officer within the meaning of subsection 2(1) of the Customs Act. (agent de contrôle)\ntraveller means a person, including the operator of a conveyance, who arrives in Canada or is in the process of departing from Canada. (voyageur)\nvector means an insect or animal capable of transmitting a communicable disease. (vecteur)",
|
| 30 |
+
"history": "",
|
| 31 |
+
"last_amended": "2006-12-12",
|
| 32 |
+
"current_to": "2024-04-01",
|
| 33 |
+
"citation": "Quarantine Act, s. 2",
|
| 34 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-2.html"
|
| 35 |
+
},
|
| 36 |
+
{
|
| 37 |
+
"id": "Q-1.1-s3",
|
| 38 |
+
"act_code": "Q-1.1",
|
| 39 |
+
"act_short": "Quarantine Act",
|
| 40 |
+
"act_name": "Quarantine Act",
|
| 41 |
+
"section": "3",
|
| 42 |
+
"marginal_note": "Binding on Her Majesty",
|
| 43 |
+
"part": "",
|
| 44 |
+
"division": "",
|
| 45 |
+
"heading": "Binding on Her Majesty",
|
| 46 |
+
"text": "3 This Act is binding on Her Majesty in right of Canada or of a province.",
|
| 47 |
+
"history": "",
|
| 48 |
+
"last_amended": "2006-12-12",
|
| 49 |
+
"current_to": "2024-04-01",
|
| 50 |
+
"citation": "Quarantine Act, s. 3",
|
| 51 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-3.html"
|
| 52 |
+
},
|
| 53 |
+
{
|
| 54 |
+
"id": "Q-1.1-s4",
|
| 55 |
+
"act_code": "Q-1.1",
|
| 56 |
+
"act_short": "Quarantine Act",
|
| 57 |
+
"act_name": "Quarantine Act",
|
| 58 |
+
"section": "4",
|
| 59 |
+
"marginal_note": "Purpose",
|
| 60 |
+
"part": "",
|
| 61 |
+
"division": "",
|
| 62 |
+
"heading": "Purpose",
|
| 63 |
+
"text": "4 The purpose of this Act is to protect public health by taking comprehensive measures to prevent the introduction and spread of communicable diseases.",
|
| 64 |
+
"history": "",
|
| 65 |
+
"last_amended": "2006-12-12",
|
| 66 |
+
"current_to": "2024-04-01",
|
| 67 |
+
"citation": "Quarantine Act, s. 4",
|
| 68 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-4.html"
|
| 69 |
+
},
|
| 70 |
+
{
|
| 71 |
+
"id": "Q-1.1-s5",
|
| 72 |
+
"act_code": "Q-1.1",
|
| 73 |
+
"act_short": "Quarantine Act",
|
| 74 |
+
"act_name": "Quarantine Act",
|
| 75 |
+
"section": "5",
|
| 76 |
+
"marginal_note": "Designating analysts and certain officers",
|
| 77 |
+
"part": "",
|
| 78 |
+
"division": "",
|
| 79 |
+
"heading": "Powers of Minister",
|
| 80 |
+
"text": "5\n(1) The Minister may designate qualified persons, or classes of qualified persons, as analysts, screening officers or environmental health officers.\n(2) [Designating quarantine officers] The Minister may designate medical practitioners or other qualified health care practitioners, or classes of such persons, as quarantine officers.\n(3) [Designating review officers] The Minister may designate medical practitioners as review officers.\n(4) [Certificate to be produced] The Minister shall give a certificate of designation to every screening officer who is not also a customs officer, to every quarantine officer and to every environmental health officer. An officer to whom a certificate has been given shall produce it, on request, to the person in charge of a place or conveyance that the officer inspects and to any person that the officer questions.",
|
| 81 |
+
"history": "",
|
| 82 |
+
"last_amended": "2006-12-12",
|
| 83 |
+
"current_to": "2024-04-01",
|
| 84 |
+
"citation": "Quarantine Act, s. 5",
|
| 85 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-5.html"
|
| 86 |
+
},
|
| 87 |
+
{
|
| 88 |
+
"id": "Q-1.1-s6",
|
| 89 |
+
"act_code": "Q-1.1",
|
| 90 |
+
"act_short": "Quarantine Act",
|
| 91 |
+
"act_name": "Quarantine Act",
|
| 92 |
+
"section": "6",
|
| 93 |
+
"marginal_note": "Quarantine station",
|
| 94 |
+
"part": "",
|
| 95 |
+
"division": "",
|
| 96 |
+
"heading": "Powers of Minister",
|
| 97 |
+
"text": "6\n(1) The Minister may establish a quarantine station at any place in Canada.\n(2) [Provision and maintenance of area or facility] The operator of a facility in which a customs office, within the meaning of subsection 2(1) of the Customs Act, is located shall, when required in writing by the Minister, provide and maintain free of charge any area or facility, along with its fixtures, that the Minister considers necessary for establishing a quarantine station.",
|
| 98 |
+
"history": "",
|
| 99 |
+
"last_amended": "2006-12-12",
|
| 100 |
+
"current_to": "2024-04-01",
|
| 101 |
+
"citation": "Quarantine Act, s. 6",
|
| 102 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-6.html"
|
| 103 |
+
},
|
| 104 |
+
{
|
| 105 |
+
"id": "Q-1.1-s7",
|
| 106 |
+
"act_code": "Q-1.1",
|
| 107 |
+
"act_short": "Quarantine Act",
|
| 108 |
+
"act_name": "Quarantine Act",
|
| 109 |
+
"section": "7",
|
| 110 |
+
"marginal_note": "Quarantine facilities",
|
| 111 |
+
"part": "",
|
| 112 |
+
"division": "",
|
| 113 |
+
"heading": "Powers of Minister",
|
| 114 |
+
"text": "7 The Minister may by order designate any place in Canada as a quarantine facility and amend, cancel or reinstate the designation.",
|
| 115 |
+
"history": "",
|
| 116 |
+
"last_amended": "2006-12-12",
|
| 117 |
+
"current_to": "2024-04-01",
|
| 118 |
+
"citation": "Quarantine Act, s. 7",
|
| 119 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-7.html"
|
| 120 |
+
},
|
| 121 |
+
{
|
| 122 |
+
"id": "Q-1.1-s8",
|
| 123 |
+
"act_code": "Q-1.1",
|
| 124 |
+
"act_short": "Quarantine Act",
|
| 125 |
+
"act_name": "Quarantine Act",
|
| 126 |
+
"section": "8",
|
| 127 |
+
"marginal_note": "Duty to provide",
|
| 128 |
+
"part": "",
|
| 129 |
+
"division": "",
|
| 130 |
+
"heading": "Powers of Minister",
|
| 131 |
+
"text": "8\n(1) Any person in charge of a place shall, at the request of the Minister, provide that place to the Minister if, in the opinion of the Minister, the temporary use of the place as a quarantine facility is necessary to protect public health.\n(2) [Deeming] The place is deemed to be designated as a quarantine facility.\n(3) [Compensation] The Minister may compensate any person for the Minister’s use of the place.\n(4) [Consultation] The Minister shall consult with the provincial public health authority of the province in which the place is situated before taking possession of it.",
|
| 132 |
+
"history": "",
|
| 133 |
+
"last_amended": "2006-12-12",
|
| 134 |
+
"current_to": "2024-04-01",
|
| 135 |
+
"citation": "Quarantine Act, s. 8",
|
| 136 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-8.html"
|
| 137 |
+
},
|
| 138 |
+
{
|
| 139 |
+
"id": "Q-1.1-s9",
|
| 140 |
+
"act_code": "Q-1.1",
|
| 141 |
+
"act_short": "Quarantine Act",
|
| 142 |
+
"act_name": "Quarantine Act",
|
| 143 |
+
"section": "9",
|
| 144 |
+
"marginal_note": "Designation of entry point",
|
| 145 |
+
"part": "",
|
| 146 |
+
"division": "",
|
| 147 |
+
"heading": "Powers of Minister",
|
| 148 |
+
"text": "9 The Minister may by order designate any point in Canada as an entry point.",
|
| 149 |
+
"history": "",
|
| 150 |
+
"last_amended": "2006-12-12",
|
| 151 |
+
"current_to": "2024-04-01",
|
| 152 |
+
"citation": "Quarantine Act, s. 9",
|
| 153 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-9.html"
|
| 154 |
+
},
|
| 155 |
+
{
|
| 156 |
+
"id": "Q-1.1-s10",
|
| 157 |
+
"act_code": "Q-1.1",
|
| 158 |
+
"act_short": "Quarantine Act",
|
| 159 |
+
"act_name": "Quarantine Act",
|
| 160 |
+
"section": "10",
|
| 161 |
+
"marginal_note": "Designation of departure point",
|
| 162 |
+
"part": "",
|
| 163 |
+
"division": "",
|
| 164 |
+
"heading": "Powers of Minister",
|
| 165 |
+
"text": "10 The Minister may by order designate any point in Canada as a departure point if, in the opinion of the Minister, the order is necessary to prevent the spread of a communicable disease.",
|
| 166 |
+
"history": "",
|
| 167 |
+
"last_amended": "2006-12-12",
|
| 168 |
+
"current_to": "2024-04-01",
|
| 169 |
+
"citation": "Quarantine Act, s. 10",
|
| 170 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-10.html"
|
| 171 |
+
},
|
| 172 |
+
{
|
| 173 |
+
"id": "Q-1.1-s11",
|
| 174 |
+
"act_code": "Q-1.1",
|
| 175 |
+
"act_short": "Quarantine Act",
|
| 176 |
+
"act_name": "Quarantine Act",
|
| 177 |
+
"section": "11",
|
| 178 |
+
"marginal_note": "Ministerial agreements",
|
| 179 |
+
"part": "",
|
| 180 |
+
"division": "",
|
| 181 |
+
"heading": "Powers of Minister",
|
| 182 |
+
"text": "11 The Minister may enter into an agreement with a department or an agency of the Government of Canada or of a province, or with a public health authority, respecting the administration and enforcement of this Act or of an Act of a province.",
|
| 183 |
+
"history": "",
|
| 184 |
+
"last_amended": "2006-12-12",
|
| 185 |
+
"current_to": "2024-04-01",
|
| 186 |
+
"citation": "Quarantine Act, s. 11",
|
| 187 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-11.html"
|
| 188 |
+
},
|
| 189 |
+
{
|
| 190 |
+
"id": "Q-1.1-s12",
|
| 191 |
+
"act_code": "Q-1.1",
|
| 192 |
+
"act_short": "Quarantine Act",
|
| 193 |
+
"act_name": "Quarantine Act",
|
| 194 |
+
"section": "12",
|
| 195 |
+
"marginal_note": "Obligation on arriving travellers",
|
| 196 |
+
"part": "",
|
| 197 |
+
"division": "",
|
| 198 |
+
"heading": "Travellers",
|
| 199 |
+
"text": "12 Every person who is subject to subsection 11(1) of the Customs Act and enters Canada shall, immediately after entering, present themselves to a screening officer at the nearest entry point.",
|
| 200 |
+
"history": "",
|
| 201 |
+
"last_amended": "2006-12-12",
|
| 202 |
+
"current_to": "2024-04-01",
|
| 203 |
+
"citation": "Quarantine Act, s. 12",
|
| 204 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-12.html"
|
| 205 |
+
},
|
| 206 |
+
{
|
| 207 |
+
"id": "Q-1.1-s13",
|
| 208 |
+
"act_code": "Q-1.1",
|
| 209 |
+
"act_short": "Quarantine Act",
|
| 210 |
+
"act_name": "Quarantine Act",
|
| 211 |
+
"section": "13",
|
| 212 |
+
"marginal_note": "Obligation on departing travellers",
|
| 213 |
+
"part": "",
|
| 214 |
+
"division": "",
|
| 215 |
+
"heading": "Travellers",
|
| 216 |
+
"text": "13 Every person who leaves Canada through a departure point shall, immediately before leaving, present themselves to a screening officer or quarantine officer at the departure point.",
|
| 217 |
+
"history": "",
|
| 218 |
+
"last_amended": "2006-12-12",
|
| 219 |
+
"current_to": "2024-04-01",
|
| 220 |
+
"citation": "Quarantine Act, s. 13",
|
| 221 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-13.html"
|
| 222 |
+
},
|
| 223 |
+
{
|
| 224 |
+
"id": "Q-1.1-s14",
|
| 225 |
+
"act_code": "Q-1.1",
|
| 226 |
+
"act_short": "Quarantine Act",
|
| 227 |
+
"act_name": "Quarantine Act",
|
| 228 |
+
"section": "14",
|
| 229 |
+
"marginal_note": "Screening technology",
|
| 230 |
+
"part": "",
|
| 231 |
+
"division": "",
|
| 232 |
+
"heading": "Travellers",
|
| 233 |
+
"text": "14\n(1) Any qualified person authorized by the Minister may, to determine whether a traveller has a communicable disease or symptoms of one, use any screening technology authorized by the Minister that does not involve the entry into the traveller’s body of any instrument or other foreign body.\n(2) [Refusal to be screened] If a traveller refuses to be screened with the screening technology and the person using it is not a screening officer or quarantine officer, the person shall immediately inform a screening officer or quarantine officer of the refusal.",
|
| 234 |
+
"history": "",
|
| 235 |
+
"last_amended": "2006-12-12",
|
| 236 |
+
"current_to": "2024-04-01",
|
| 237 |
+
"citation": "Quarantine Act, s. 14",
|
| 238 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-14.html"
|
| 239 |
+
},
|
| 240 |
+
{
|
| 241 |
+
"id": "Q-1.1-s15",
|
| 242 |
+
"act_code": "Q-1.1",
|
| 243 |
+
"act_short": "Quarantine Act",
|
| 244 |
+
"act_name": "Quarantine Act",
|
| 245 |
+
"section": "15",
|
| 246 |
+
"marginal_note": "Duty to provide information",
|
| 247 |
+
"part": "",
|
| 248 |
+
"division": "",
|
| 249 |
+
"heading": "Travellers",
|
| 250 |
+
"text": "15\n(1) Every traveller shall answer any relevant questions asked by a screening officer or quarantine officer and provide to the officer any information or record in their possession that the officer may reasonably require in the performance of a duty under this Act.\n(2) [Duty to disclose communicable disease] Any traveller who has reasonable grounds to suspect that they have or might have a communicable disease listed in the schedule or are infested with vectors, or that they have recently been in close proximity to a person who has, or is reasonably likely to have, a communicable disease listed in the schedule or is infested with vectors, shall disclose that fact to a screening officer or quarantine officer.\n(3) [Compliance with measures] Every traveller shall comply with any reasonable measure ordered by a screening officer or quarantine officer for the purpose of preventing the introduction and spread of a communicable disease.",
|
| 251 |
+
"history": "",
|
| 252 |
+
"last_amended": "2006-12-12",
|
| 253 |
+
"current_to": "2024-04-01",
|
| 254 |
+
"citation": "Quarantine Act, s. 15",
|
| 255 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-15.html"
|
| 256 |
+
},
|
| 257 |
+
{
|
| 258 |
+
"id": "Q-1.1-s16",
|
| 259 |
+
"act_code": "Q-1.1",
|
| 260 |
+
"act_short": "Quarantine Act",
|
| 261 |
+
"act_name": "Quarantine Act",
|
| 262 |
+
"section": "16",
|
| 263 |
+
"marginal_note": "Obligation to inform",
|
| 264 |
+
"part": "",
|
| 265 |
+
"division": "",
|
| 266 |
+
"heading": "Travellers",
|
| 267 |
+
"text": "16\n(1) A screening officer shall immediately inform a quarantine officer, and follow any directive of that officer respecting the traveller, if\n(a) the screening officer has reasonable grounds to suspect that a traveller has or might have a communicable disease or is infested with vectors, or has recently been in close proximity to a person who has or might have a communicable disease or is infested with vectors;\n(b) a traveller has refused to be screened by the screening officer under subsection 14(1), or a person authorized to use the screening technology has informed the screening officer that a traveller has refused to be screened under that subsection;\n(c) a traveller has contravened subsection 15(1) by refusing to answer a question asked by the screening officer or by refusing to provide information or a record that the screening officer required; or\n(d) a traveller has contravened subsection 15(3) by refusing to comply with a measure ordered by the screening officer.\n(2) [Isolation] The screening officer may, without directives from a quarantine officer, isolate the traveller, individually or within a group, until the traveller is assessed by a quarantine officer.",
|
| 268 |
+
"history": "",
|
| 269 |
+
"last_amended": "2006-12-12",
|
| 270 |
+
"current_to": "2024-04-01",
|
| 271 |
+
"citation": "Quarantine Act, s. 16",
|
| 272 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-16.html"
|
| 273 |
+
},
|
| 274 |
+
{
|
| 275 |
+
"id": "Q-1.1-s17",
|
| 276 |
+
"act_code": "Q-1.1",
|
| 277 |
+
"act_short": "Quarantine Act",
|
| 278 |
+
"act_name": "Quarantine Act",
|
| 279 |
+
"section": "17",
|
| 280 |
+
"marginal_note": "Traveller to be informed",
|
| 281 |
+
"part": "",
|
| 282 |
+
"division": "",
|
| 283 |
+
"heading": "Travellers",
|
| 284 |
+
"text": "17 A screening officer or quarantine officer who takes any action in respect of a traveller under this Act shall, if reasonably possible, inform the traveller of the measure before it is taken.",
|
| 285 |
+
"history": "",
|
| 286 |
+
"last_amended": "2006-12-12",
|
| 287 |
+
"current_to": "2024-04-01",
|
| 288 |
+
"citation": "Quarantine Act, s. 17",
|
| 289 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-17.html"
|
| 290 |
+
},
|
| 291 |
+
{
|
| 292 |
+
"id": "Q-1.1-s18",
|
| 293 |
+
"act_code": "Q-1.1",
|
| 294 |
+
"act_short": "Quarantine Act",
|
| 295 |
+
"act_name": "Quarantine Act",
|
| 296 |
+
"section": "18",
|
| 297 |
+
"marginal_note": "Arrest without warrant",
|
| 298 |
+
"part": "",
|
| 299 |
+
"division": "",
|
| 300 |
+
"heading": "Travellers",
|
| 301 |
+
"text": "18 A peace officer may, at the request of a screening officer or quarantine officer, arrest without a warrant and bring to a quarantine officer any traveller who the peace officer has reasonable grounds to believe has refused to be isolated or refuses to comply with a measure under subsection 15(3).",
|
| 302 |
+
"history": "",
|
| 303 |
+
"last_amended": "2006-12-12",
|
| 304 |
+
"current_to": "2024-04-01",
|
| 305 |
+
"citation": "Quarantine Act, s. 18",
|
| 306 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-18.html"
|
| 307 |
+
},
|
| 308 |
+
{
|
| 309 |
+
"id": "Q-1.1-s19",
|
| 310 |
+
"act_code": "Q-1.1",
|
| 311 |
+
"act_short": "Quarantine Act",
|
| 312 |
+
"act_name": "Quarantine Act",
|
| 313 |
+
"section": "19",
|
| 314 |
+
"marginal_note": "Health assessment requirement",
|
| 315 |
+
"part": "",
|
| 316 |
+
"division": "",
|
| 317 |
+
"heading": "Travellers",
|
| 318 |
+
"text": "19\n(1) A quarantine officer may require a traveller to undergo a health assessment if\n(a) the officer has reasonable grounds to suspect that the traveller has or might have a communicable disease or is infested with vectors, or has recently been in close proximity to a person who has or might have a communicable disease or is infested with vectors;\n(b) the traveller has refused to be screened under subsection 14(1); or\n(c) the traveller has contravened subsection 15(1) or (3).\n(2) [Timing of assessment] The health assessment shall be undertaken as soon as reasonably practicable but in any case within 48 hours after the quarantine officer requires the traveller to undergo it.",
|
| 319 |
+
"history": "",
|
| 320 |
+
"last_amended": "2006-12-12",
|
| 321 |
+
"current_to": "2024-04-01",
|
| 322 |
+
"citation": "Quarantine Act, s. 19",
|
| 323 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-19.html"
|
| 324 |
+
},
|
| 325 |
+
{
|
| 326 |
+
"id": "Q-1.1-s20",
|
| 327 |
+
"act_code": "Q-1.1",
|
| 328 |
+
"act_short": "Quarantine Act",
|
| 329 |
+
"act_name": "Quarantine Act",
|
| 330 |
+
"section": "20",
|
| 331 |
+
"marginal_note": "Person at an entry or departure point",
|
| 332 |
+
"part": "",
|
| 333 |
+
"division": "",
|
| 334 |
+
"heading": "Travellers",
|
| 335 |
+
"text": "20\n(1) A quarantine officer may require any person at an entry or departure point to undergo a health assessment if the quarantine officer has reasonable grounds to suspect that the person has recently been in close proximity to a person who has or might have a communicable disease or who is infested with vectors.\n(1.1) [When health assessment to be undertaken] The health assessment shall be undertaken as soon as reasonably practicable but in any case within 48 hours after the quarantine officer requires the traveller to undergo it.\n(2) [Person is a traveller] For the purposes of sections 21 to 33.1, traveller includes any person required to undergo a health assessment under subsection (1).",
|
| 336 |
+
"history": "",
|
| 337 |
+
"last_amended": "2006-12-12",
|
| 338 |
+
"current_to": "2024-04-01",
|
| 339 |
+
"citation": "Quarantine Act, s. 20",
|
| 340 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-20.html"
|
| 341 |
+
},
|
| 342 |
+
{
|
| 343 |
+
"id": "Q-1.1-s21",
|
| 344 |
+
"act_code": "Q-1.1",
|
| 345 |
+
"act_short": "Quarantine Act",
|
| 346 |
+
"act_name": "Quarantine Act",
|
| 347 |
+
"section": "21",
|
| 348 |
+
"marginal_note": "Disinfestation of traveller, etc.",
|
| 349 |
+
"part": "",
|
| 350 |
+
"division": "",
|
| 351 |
+
"heading": "Travellers",
|
| 352 |
+
"text": "21\n(1) A quarantine officer may require a traveller, their clothing and their personal belongings to be disinfested if, after a health assessment of the traveller, the quarantine officer has reasonable grounds to believe that the traveller is infested with vectors.\n(2) [Disinfestation of baggage] A quarantine officer or a person acting on their behalf may detain and disinfest any baggage if the quarantine officer has reasonable grounds to believe that the baggage is infested with vectors.\n(3) [Disinfestation of place] A quarantine officer or a person acting on their behalf may enter and disinfest any place at an entry or departure point if a traveller or baggage that was or may be disinfested under subsection (1) or (2) has been in or at that place and the quarantine officer has reasonable grounds to believe that the place is infested with vectors.",
|
| 353 |
+
"history": "",
|
| 354 |
+
"last_amended": "2006-12-12",
|
| 355 |
+
"current_to": "2024-04-01",
|
| 356 |
+
"citation": "Quarantine Act, s. 21",
|
| 357 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-21.html"
|
| 358 |
+
},
|
| 359 |
+
{
|
| 360 |
+
"id": "Q-1.1-s22",
|
| 361 |
+
"act_code": "Q-1.1",
|
| 362 |
+
"act_short": "Quarantine Act",
|
| 363 |
+
"act_name": "Quarantine Act",
|
| 364 |
+
"section": "22",
|
| 365 |
+
"marginal_note": "Medical examination",
|
| 366 |
+
"part": "",
|
| 367 |
+
"division": "",
|
| 368 |
+
"heading": "Travellers",
|
| 369 |
+
"text": "22\n(1) If a quarantine officer has reasonable grounds to believe that a traveller has or might have a communicable disease or is infested with vectors, or has recently been in close proximity to a person who has or might have a communicable disease or is infested with vectors, the officer may require the traveller to undergo a medical examination.\n(2) [Timing of examination] The medical examination shall be conducted by a medical practitioner and undertaken as soon as reasonably practicable but in any case within 48 hours after the quarantine officer requires the traveller to undergo it.",
|
| 370 |
+
"history": "",
|
| 371 |
+
"last_amended": "2006-12-12",
|
| 372 |
+
"current_to": "2024-04-01",
|
| 373 |
+
"citation": "Quarantine Act, s. 22",
|
| 374 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-22.html"
|
| 375 |
+
},
|
| 376 |
+
{
|
| 377 |
+
"id": "Q-1.1-s23",
|
| 378 |
+
"act_code": "Q-1.1",
|
| 379 |
+
"act_short": "Quarantine Act",
|
| 380 |
+
"act_name": "Quarantine Act",
|
| 381 |
+
"section": "23",
|
| 382 |
+
"marginal_note": "Request of specific medical practitioner",
|
| 383 |
+
"part": "",
|
| 384 |
+
"division": "",
|
| 385 |
+
"heading": "Travellers",
|
| 386 |
+
"text": "23\n(1) At any time, a traveller may request an examination by a medical practitioner of their choice in addition to a medical examination conducted under subsection 22(1). The quarantine officer shall inform the traveller of this right.\n(2) [Granting of request] The quarantine officer shall accept the request if, in the opinion of the officer, the examination would not unduly delay any measures taken in the administration of this Act.\n(3) [Cost and location of examination] The examination shall be at the traveller’s expense and shall be conducted in the place where the traveller is detained.",
|
| 387 |
+
"history": "",
|
| 388 |
+
"last_amended": "2006-12-12",
|
| 389 |
+
"current_to": "2024-04-01",
|
| 390 |
+
"citation": "Quarantine Act, s. 23",
|
| 391 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-23.html"
|
| 392 |
+
},
|
| 393 |
+
{
|
| 394 |
+
"id": "Q-1.1-s24",
|
| 395 |
+
"act_code": "Q-1.1",
|
| 396 |
+
"act_short": "Quarantine Act",
|
| 397 |
+
"act_name": "Quarantine Act",
|
| 398 |
+
"section": "24",
|
| 399 |
+
"marginal_note": "Interpreter",
|
| 400 |
+
"part": "",
|
| 401 |
+
"division": "",
|
| 402 |
+
"heading": "Travellers",
|
| 403 |
+
"text": "24 The Minister shall, if reasonably possible, provide a traveller with an interpreter if the traveller does not have an adequate understanding of at least one of Canada’s official languages or has a speech or hearing disability.",
|
| 404 |
+
"history": "",
|
| 405 |
+
"last_amended": "2006-12-12",
|
| 406 |
+
"current_to": "2024-04-01",
|
| 407 |
+
"citation": "Quarantine Act, s. 24",
|
| 408 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-24.html"
|
| 409 |
+
},
|
| 410 |
+
{
|
| 411 |
+
"id": "Q-1.1-s25",
|
| 412 |
+
"act_code": "Q-1.1",
|
| 413 |
+
"act_short": "Quarantine Act",
|
| 414 |
+
"act_name": "Quarantine Act",
|
| 415 |
+
"section": "25",
|
| 416 |
+
"marginal_note": "Report to public health authority",
|
| 417 |
+
"part": "",
|
| 418 |
+
"division": "",
|
| 419 |
+
"heading": "Travellers",
|
| 420 |
+
"text": "25\n(1) If a quarantine officer, after the health assessment or medical examination of a traveller, has reasonable grounds to suspect that the traveller has or might have a communicable disease, or has recently been in close proximity to a person who has or might have a communicable disease or is infested with vectors, but is of the opinion that the traveller does not pose an immediate risk of significant harm to public health, the officer may order the traveller to report to the public health authority specified in the order.\n(2) [Public health authority to be informed] The quarantine officer shall, without delay, send a copy of an order made under subsection (1) to the public health authority specified in the order.\n(3) [Quarantine officer to be informed] The public health authority shall inform the quarantine officer, in accordance with the order, whether the traveller reports to the authority.",
|
| 421 |
+
"history": "",
|
| 422 |
+
"last_amended": "2006-12-12",
|
| 423 |
+
"current_to": "2024-04-01",
|
| 424 |
+
"citation": "Quarantine Act, s. 25",
|
| 425 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-25.html"
|
| 426 |
+
},
|
| 427 |
+
{
|
| 428 |
+
"id": "Q-1.1-s26",
|
| 429 |
+
"act_code": "Q-1.1",
|
| 430 |
+
"act_short": "Quarantine Act",
|
| 431 |
+
"act_name": "Quarantine Act",
|
| 432 |
+
"section": "26",
|
| 433 |
+
"marginal_note": "Order to comply with treatment or measure",
|
| 434 |
+
"part": "",
|
| 435 |
+
"division": "",
|
| 436 |
+
"heading": "Travellers",
|
| 437 |
+
"text": "26 If a quarantine officer, after the medical examination of a traveller, has reasonable grounds to believe that the traveller has or might have a communicable disease or is infested with vectors, or has recently been in close proximity to a person who has or might have a communicable disease or is infested with vectors, the quarantine officer may order the traveller to comply with treatment or any other measure for preventing the introduction and spread of the communicable disease.",
|
| 438 |
+
"history": "",
|
| 439 |
+
"last_amended": "2006-12-12",
|
| 440 |
+
"current_to": "2024-04-01",
|
| 441 |
+
"citation": "Quarantine Act, s. 26",
|
| 442 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-26.html"
|
| 443 |
+
},
|
| 444 |
+
{
|
| 445 |
+
"id": "Q-1.1-s27",
|
| 446 |
+
"act_code": "Q-1.1",
|
| 447 |
+
"act_short": "Quarantine Act",
|
| 448 |
+
"act_name": "Quarantine Act",
|
| 449 |
+
"section": "27",
|
| 450 |
+
"marginal_note": "Arrest warrant",
|
| 451 |
+
"part": "",
|
| 452 |
+
"division": "",
|
| 453 |
+
"heading": "Travellers",
|
| 454 |
+
"text": "27 On an ex parte application by a quarantine officer, a provincial court judge within the meaning of section 2 of the Criminal Code who is satisfied on information submitted in writing and under oath that a traveller has failed to comply with an order made under subsection 25(1) or section 26 may issue a warrant directing a peace officer to arrest the traveller and take them to a quarantine officer.",
|
| 455 |
+
"history": "",
|
| 456 |
+
"last_amended": "2006-12-12",
|
| 457 |
+
"current_to": "2024-04-01",
|
| 458 |
+
"citation": "Quarantine Act, s. 27",
|
| 459 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-27.html"
|
| 460 |
+
},
|
| 461 |
+
{
|
| 462 |
+
"id": "Q-1.1-s28",
|
| 463 |
+
"act_code": "Q-1.1",
|
| 464 |
+
"act_short": "Quarantine Act",
|
| 465 |
+
"act_name": "Quarantine Act",
|
| 466 |
+
"section": "28",
|
| 467 |
+
"marginal_note": "Detention by quarantine officer",
|
| 468 |
+
"part": "",
|
| 469 |
+
"division": "",
|
| 470 |
+
"heading": "Travellers",
|
| 471 |
+
"text": "28\n(1) A quarantine officer may detain any traveller who\n(a) has refused to be disinfested or to undergo a health assessment;\n(b) has been required to undergo a medical examination under subsection 22(1);\n(c) has failed to comply with an order made under section 26;\n(d) the quarantine officer has reasonable grounds to believe\n(i) has or might have a communicable disease or is infested with vectors, or has recently been in close proximity to a person who has or might have a communicable disease or is infested with vectors, and\n(ii) is capable of infecting other people;\n(e) has been arrested under section 27; or\n(f) has been arrested without a warrant under section 18.\n(2) [Arrest without warrant] A peace officer may, at the request of a quarantine officer, arrest without a warrant and bring to the quarantine officer any traveller referred to in subsection (1) who resists detention.",
|
| 472 |
+
"history": "",
|
| 473 |
+
"last_amended": "2006-12-12",
|
| 474 |
+
"current_to": "2024-04-01",
|
| 475 |
+
"citation": "Quarantine Act, s. 28",
|
| 476 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-28.html"
|
| 477 |
+
},
|
| 478 |
+
{
|
| 479 |
+
"id": "Q-1.1-s29",
|
| 480 |
+
"act_code": "Q-1.1",
|
| 481 |
+
"act_short": "Quarantine Act",
|
| 482 |
+
"act_name": "Quarantine Act",
|
| 483 |
+
"section": "29",
|
| 484 |
+
"marginal_note": "Right to review",
|
| 485 |
+
"part": "",
|
| 486 |
+
"division": "",
|
| 487 |
+
"heading": "Travellers",
|
| 488 |
+
"text": "29\n(1) The quarantine officer shall immediately inform a traveller detained under subsection 28(1) of their right to a review of the confirmation of detention.\n(2) [Frequency of examination] The quarantine officer shall provide the traveller with the opportunity to undergo a medical examination by a medical practitioner at least every seven days after the day on which the detention begins.\n(3) [Confirmation of detention] A quarantine officer shall confirm, at least every seven days after the day on which the detention begins and on the basis of the most recent medical examination or any other information, that continued detention is necessary if the officer has reasonable grounds to believe that the traveller poses a risk of significant harm to public health. The quarantine officer shall give the traveller a copy of the confirmation of detention detailing the reasons for the continued detention.\n(4) [Request for review] A traveller who has received a confirmation of detention under subsection (3) may request a review of the confirmation by transmitting a written request to that effect to a quarantine officer.\n(5) [Request] A quarantine officer who receives a request under subsection (4) shall immediately send it to a review officer designated under subsection 5(3).\n(6) [Release] The review officer shall, within 48 hours after receiving the request, conduct a review of the confirmation of detention and, if the review officer has reasonable grounds to believe that the traveller does not pose a risk of significant harm to public health, order the traveller’s release.",
|
| 489 |
+
"history": "",
|
| 490 |
+
"last_amended": "2006-12-12",
|
| 491 |
+
"current_to": "2024-04-01",
|
| 492 |
+
"citation": "Quarantine Act, s. 29",
|
| 493 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-29.html"
|
| 494 |
+
},
|
| 495 |
+
{
|
| 496 |
+
"id": "Q-1.1-s30",
|
| 497 |
+
"act_code": "Q-1.1",
|
| 498 |
+
"act_short": "Quarantine Act",
|
| 499 |
+
"act_name": "Quarantine Act",
|
| 500 |
+
"section": "30",
|
| 501 |
+
"marginal_note": "Review by Minister",
|
| 502 |
+
"part": "",
|
| 503 |
+
"division": "",
|
| 504 |
+
"heading": "Travellers",
|
| 505 |
+
"text": "30 The Minister may, on the Minister’s own motion, review any decision of a quarantine officer to detain a traveller and, if the Minister is of the opinion that the traveller does not pose a risk of significant harm to public health, order the traveller’s release.",
|
| 506 |
+
"history": "",
|
| 507 |
+
"last_amended": "2006-12-12",
|
| 508 |
+
"current_to": "2024-04-01",
|
| 509 |
+
"citation": "Quarantine Act, s. 30",
|
| 510 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-30.html"
|
| 511 |
+
},
|
| 512 |
+
{
|
| 513 |
+
"id": "Q-1.1-s31",
|
| 514 |
+
"act_code": "Q-1.1",
|
| 515 |
+
"act_short": "Quarantine Act",
|
| 516 |
+
"act_name": "Quarantine Act",
|
| 517 |
+
"section": "31",
|
| 518 |
+
"marginal_note": "Mandatory application for court order",
|
| 519 |
+
"part": "",
|
| 520 |
+
"division": "",
|
| 521 |
+
"heading": "Travellers",
|
| 522 |
+
"text": "31\n(1) If a quarantine officer detains a traveller referred to in paragraph 28(1)(a), (c), (e) or (f), or a traveller referred to in paragraph 28(1)(b) who has refused to undergo the medical examination, the quarantine officer shall, as soon as reasonably practicable, apply to a judge of the superior court of the province in which the traveller is detained, or to a judge of the Federal Court, for an order requiring the traveller\n(a) to submit to a health assessment;\n(b) to submit to a medical examination;\n(c) to be treated;\n(d) to be disinfested; or\n(e) to undergo any other measure for preventing or controlling the spread of a communicable disease.\n(2) [Discretionary application for court order] If a quarantine officer detains a traveller referred to in paragraph 28(1)(b) who has not refused to undergo the medical examination, or a traveller referred to in paragraph 28(1)(d), the quarantine officer may apply to a judge of the superior court of the province in which the traveller is detained, or to a judge of the Federal Court, for an order referred to in any of paragraphs (1)(b) to (e).\n(3) [Court order for medical intervention] A judge may make an order under this section only if the judge is satisfied that\n(a) the order is appropriate to prevent or control a risk of significant harm to public health; and\n(b) other reasonable means are not available to prevent or control the risk.\n(4) [Technological means for appearance] The traveller may appear before the court by any technological means satisfactory to the court that permits the court and the traveller to communicate simultaneously if the court is satisfied that the use of the technology is necessary or prudent to prevent the spread of a communicable disease.",
|
| 523 |
+
"history": "",
|
| 524 |
+
"last_amended": "2006-12-12",
|
| 525 |
+
"current_to": "2024-04-01",
|
| 526 |
+
"citation": "Quarantine Act, s. 31",
|
| 527 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-31.html"
|
| 528 |
+
},
|
| 529 |
+
{
|
| 530 |
+
"id": "Q-1.1-s32",
|
| 531 |
+
"act_code": "Q-1.1",
|
| 532 |
+
"act_short": "Quarantine Act",
|
| 533 |
+
"act_name": "Quarantine Act",
|
| 534 |
+
"section": "32",
|
| 535 |
+
"marginal_note": "Release",
|
| 536 |
+
"part": "",
|
| 537 |
+
"division": "",
|
| 538 |
+
"heading": "Travellers",
|
| 539 |
+
"text": "32 A quarantine officer shall not detain a traveller if\n(a) the quarantine officer has reasonable grounds to believe that the traveller does not pose a risk of significant harm to public health;\n(b) the traveller is transferred to a public health authority under section 33;\n(c) the release of the traveller is ordered under subsection 29(6) or section 30; or\n(d) the quarantine officer has reasonable grounds to believe that other reasonable means are available to prevent or control a risk of significant harm to public health.",
|
| 540 |
+
"history": "",
|
| 541 |
+
"last_amended": "2006-12-12",
|
| 542 |
+
"current_to": "2024-04-01",
|
| 543 |
+
"citation": "Quarantine Act, s. 32",
|
| 544 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-32.html"
|
| 545 |
+
},
|
| 546 |
+
{
|
| 547 |
+
"id": "Q-1.1-s33",
|
| 548 |
+
"act_code": "Q-1.1",
|
| 549 |
+
"act_short": "Quarantine Act",
|
| 550 |
+
"act_name": "Quarantine Act",
|
| 551 |
+
"section": "33",
|
| 552 |
+
"marginal_note": "Transfer to public health authority",
|
| 553 |
+
"part": "",
|
| 554 |
+
"division": "",
|
| 555 |
+
"heading": "Travellers",
|
| 556 |
+
"text": "33 A quarantine officer may at any time transfer a traveller detained by the quarantine officer under subsection 28(1) to a public health authority with the agreement of the authority or the province.",
|
| 557 |
+
"history": "",
|
| 558 |
+
"last_amended": "2006-12-12",
|
| 559 |
+
"current_to": "2024-04-01",
|
| 560 |
+
"citation": "Quarantine Act, s. 33",
|
| 561 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-33.html"
|
| 562 |
+
},
|
| 563 |
+
{
|
| 564 |
+
"id": "Q-1.1-s33.1",
|
| 565 |
+
"act_code": "Q-1.1",
|
| 566 |
+
"act_short": "Quarantine Act",
|
| 567 |
+
"act_name": "Quarantine Act",
|
| 568 |
+
"section": "33.1",
|
| 569 |
+
"marginal_note": "Notice to provincial public health authority",
|
| 570 |
+
"part": "",
|
| 571 |
+
"division": "",
|
| 572 |
+
"heading": "Travellers",
|
| 573 |
+
"text": "33.1\n(1) As soon as practicable, a quarantine officer shall inform the provincial public health authority of any province concerned if\n(a) the quarantine officer has required a traveller to undergo a medical examination under subsection 22(1);\n(b) the quarantine officer has ordered the traveller to comply with treatment or any other measure under section 26;\n(c) a peace officer has arrested a traveller and taken them to the quarantine officer under section 27;\n(d) the quarantine officer is detaining a traveller under subsection 28(1); or\n(e) the quarantine officer does not detain a traveller, for the reasons set out in paragraph 32(d).\n(2) [Disclosure of information] The quarantine officer shall disclose to the provincial public health authority the following personal information regarding the traveller, to the extent that it is known:\n(a) the traveller’s name, sex, age and date of birth;\n(b) the traveller’s itinerary, home address and location;\n(c) the communicable disease in question and the state of the traveller’s health in respect of that disease; and\n(d) the manner in which the traveller may have acquired the communicable disease or vectors.\n(3) [Disclosure to provincial public health authority] The quarantine officer may disclose confidential business information or other personal information obtained under this Act to the provincial public health authority if the officer has reasonable grounds to believe that the disclosure is necessary to prevent the spread of a communicable disease.",
|
| 574 |
+
"history": "",
|
| 575 |
+
"last_amended": "2006-12-12",
|
| 576 |
+
"current_to": "2024-04-01",
|
| 577 |
+
"citation": "Quarantine Act, s. 33.1",
|
| 578 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-33.1.html"
|
| 579 |
+
},
|
| 580 |
+
{
|
| 581 |
+
"id": "Q-1.1-s34",
|
| 582 |
+
"act_code": "Q-1.1",
|
| 583 |
+
"act_short": "Quarantine Act",
|
| 584 |
+
"act_name": "Quarantine Act",
|
| 585 |
+
"section": "34",
|
| 586 |
+
"marginal_note": "Application",
|
| 587 |
+
"part": "",
|
| 588 |
+
"division": "",
|
| 589 |
+
"heading": "Conveyances",
|
| 590 |
+
"text": "34\n(1) This section applies to the operator of any of the following conveyances:\n(a) a conveyance that is used in the business of carrying persons or cargo; and\n(b) a prescribed conveyance.\n(2) [Operator to inform quarantine officer before arrival] As soon as possible before a conveyance arrives at its destination in Canada, the operator shall inform a quarantine officer or cause a quarantine officer to be informed of any reasonable grounds to suspect that\n(a) any person, cargo or other thing on board the conveyance could cause the spreading of a communicable disease listed in the schedule;\n(b) a person on board the conveyance has died; or\n(c) any prescribed circumstances exist.\n(3) [Operator to inform quarantine officer before departure] As soon as possible before a conveyance departs from Canada through a departure point, the operator shall inform a quarantine officer or cause a quarantine officer to be informed of any circumstance referred to in paragraphs (2)(a) to (c) that exists.\n(4) [Exception] No operator contravenes subsection (2) if it is not reasonably possible for the operator to inform a quarantine officer or cause a quarantine officer to be informed before the conveyance’s arrival at its destination in Canada, as long as the operator does so on the conveyance’s arrival at that destination.",
|
| 591 |
+
"history": "2005, c. 20, s. 34; 2007, c. 27, s. 1",
|
| 592 |
+
"last_amended": "2007-06-22",
|
| 593 |
+
"current_to": "2024-04-01",
|
| 594 |
+
"citation": "Quarantine Act, s. 34",
|
| 595 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-34.html"
|
| 596 |
+
},
|
| 597 |
+
{
|
| 598 |
+
"id": "Q-1.1-s35",
|
| 599 |
+
"act_code": "Q-1.1",
|
| 600 |
+
"act_short": "Quarantine Act",
|
| 601 |
+
"act_name": "Quarantine Act",
|
| 602 |
+
"section": "35",
|
| 603 |
+
"marginal_note": "Diversion order",
|
| 604 |
+
"part": "",
|
| 605 |
+
"division": "",
|
| 606 |
+
"heading": "Conveyances",
|
| 607 |
+
"text": "35 The Minister may order the diversion of a conveyance to any place in Canada specified by the Minister if the Minister has reasonable grounds to believe that doing so is necessary to prevent the introduction and spread of a communicable disease.",
|
| 608 |
+
"history": "",
|
| 609 |
+
"last_amended": "2006-12-12",
|
| 610 |
+
"current_to": "2024-04-01",
|
| 611 |
+
"citation": "Quarantine Act, s. 35",
|
| 612 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-35.html"
|
| 613 |
+
},
|
| 614 |
+
{
|
| 615 |
+
"id": "Q-1.1-s35.1",
|
| 616 |
+
"act_code": "Q-1.1",
|
| 617 |
+
"act_short": "Quarantine Act",
|
| 618 |
+
"act_name": "Quarantine Act",
|
| 619 |
+
"section": "35.1",
|
| 620 |
+
"marginal_note": "Civil Air Navigation Services Commercialization Act",
|
| 621 |
+
"part": "",
|
| 622 |
+
"division": "",
|
| 623 |
+
"heading": "Conveyances",
|
| 624 |
+
"text": "35.1 If the Minister makes an order under section 35, the Minister may order a provider of air navigation services, within the meaning of section 2 of the Civil Air Navigation Services Commercialization Act, to relay the order.",
|
| 625 |
+
"history": "",
|
| 626 |
+
"last_amended": "2006-12-12",
|
| 627 |
+
"current_to": "2024-04-01",
|
| 628 |
+
"citation": "Quarantine Act, s. 35.1",
|
| 629 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-35.1.html"
|
| 630 |
+
},
|
| 631 |
+
{
|
| 632 |
+
"id": "Q-1.1-s36",
|
| 633 |
+
"act_code": "Q-1.1",
|
| 634 |
+
"act_short": "Quarantine Act",
|
| 635 |
+
"act_name": "Quarantine Act",
|
| 636 |
+
"section": "36",
|
| 637 |
+
"marginal_note": "Communication of information to passengers",
|
| 638 |
+
"part": "",
|
| 639 |
+
"division": "",
|
| 640 |
+
"heading": "Conveyances",
|
| 641 |
+
"text": "36 A person engaged in the business of carrying persons or cargo shall, at the request of a screening officer, a quarantine officer or an environmental health officer, communicate or distribute to travellers information or questionnaires provided by the officer.",
|
| 642 |
+
"history": "",
|
| 643 |
+
"last_amended": "2006-12-12",
|
| 644 |
+
"current_to": "2024-04-01",
|
| 645 |
+
"citation": "Quarantine Act, s. 36",
|
| 646 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-36.html"
|
| 647 |
+
},
|
| 648 |
+
{
|
| 649 |
+
"id": "Q-1.1-s37",
|
| 650 |
+
"act_code": "Q-1.1",
|
| 651 |
+
"act_short": "Quarantine Act",
|
| 652 |
+
"act_name": "Quarantine Act",
|
| 653 |
+
"section": "37",
|
| 654 |
+
"marginal_note": "Screening officer",
|
| 655 |
+
"part": "",
|
| 656 |
+
"division": "",
|
| 657 |
+
"heading": "Conveyances",
|
| 658 |
+
"text": "37\n(1) If a screening officer has reasonable grounds to suspect that a conveyance, its cargo or any other thing on board the conveyance is a source of a communicable disease, the officer shall immediately inform an environmental health officer and follow any directive of that officer respecting the matter.\n(2) [Detention, etc.] The screening officer may detain the conveyance referred to in subsection (1), or the conveyance of an operator who does not comply with section 38, take any reasonable measures to prevent entry to or exit from it or access to it or its contents or take the conveyance to a specified place, until an environmental health officer inspects the conveyance.",
|
| 659 |
+
"history": "",
|
| 660 |
+
"last_amended": "2006-12-12",
|
| 661 |
+
"current_to": "2024-04-01",
|
| 662 |
+
"citation": "Quarantine Act, s. 37",
|
| 663 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-37.html"
|
| 664 |
+
},
|
| 665 |
+
{
|
| 666 |
+
"id": "Q-1.1-s38",
|
| 667 |
+
"act_code": "Q-1.1",
|
| 668 |
+
"act_short": "Quarantine Act",
|
| 669 |
+
"act_name": "Quarantine Act",
|
| 670 |
+
"section": "38",
|
| 671 |
+
"marginal_note": "Duty to provide information",
|
| 672 |
+
"part": "",
|
| 673 |
+
"division": "",
|
| 674 |
+
"heading": "Conveyances",
|
| 675 |
+
"text": "38 The operator shall answer any relevant questions asked by a screening officer, a quarantine officer or an environmental health officer and provide the officer with any information or record in the operator’s possession that the officer may reasonably require in the performance of a duty under this Act.",
|
| 676 |
+
"history": "",
|
| 677 |
+
"last_amended": "2006-12-12",
|
| 678 |
+
"current_to": "2024-04-01",
|
| 679 |
+
"citation": "Quarantine Act, s. 38",
|
| 680 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-38.html"
|
| 681 |
+
},
|
| 682 |
+
{
|
| 683 |
+
"id": "Q-1.1-s39",
|
| 684 |
+
"act_code": "Q-1.1",
|
| 685 |
+
"act_short": "Quarantine Act",
|
| 686 |
+
"act_name": "Quarantine Act",
|
| 687 |
+
"section": "39",
|
| 688 |
+
"marginal_note": "Order of environmental health officer",
|
| 689 |
+
"part": "",
|
| 690 |
+
"division": "",
|
| 691 |
+
"heading": "Conveyances",
|
| 692 |
+
"text": "39\n(1) If an environmental health officer has reasonable grounds to believe that a conveyance, its cargo or any other thing on board the conveyance could be the source of a communicable disease, the officer may order the owner or operator of the conveyance or any person using it for the business of carrying persons or cargo to\n(a) take any reasonable measures to prevent entry to or exit from the conveyance or access to it or its contents;\n(b) take the conveyance to a specified place;\n(c) disinfect, disinfest, decontaminate or fumigate the conveyance, its contents or any place where the conveyance or its contents have been, in a manner directed by the officer;\n(d) destroy or dispose of the conveyance, its contents or any cargo or other thing that has been on board the conveyance;\n(e) carry out any measures reasonably necessary to prevent the introduction and spread of a communicable disease; or\n(f) remove the conveyance and its contents from Canada and present a declaration of health to the appropriate health authorities in the country of destination.\n(2) [Report to country of destination] An environmental health officer who makes an order under paragraph (1)(f) shall immediately report the evidence found on the conveyance and the control measures required to the appropriate authority in the country of destination.",
|
| 693 |
+
"history": "",
|
| 694 |
+
"last_amended": "2006-12-12",
|
| 695 |
+
"current_to": "2024-04-01",
|
| 696 |
+
"citation": "Quarantine Act, s. 39",
|
| 697 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-39.html"
|
| 698 |
+
},
|
| 699 |
+
{
|
| 700 |
+
"id": "Q-1.1-s40",
|
| 701 |
+
"act_code": "Q-1.1",
|
| 702 |
+
"act_short": "Quarantine Act",
|
| 703 |
+
"act_name": "Quarantine Act",
|
| 704 |
+
"section": "40",
|
| 705 |
+
"marginal_note": "Refusal to obey order",
|
| 706 |
+
"part": "",
|
| 707 |
+
"division": "",
|
| 708 |
+
"heading": "Conveyances",
|
| 709 |
+
"text": "40\n(1) If a person refuses to obey the order of an environmental health officer made under subsection 39(1), the officer may carry out the order themself, or order another person to carry it out.\n(2) [Informing of action] After the order is carried out, the environmental health officer shall, as soon as practicable, advise the person who refused to obey the order of the action taken and the place where the conveyance and its contents are being kept.",
|
| 710 |
+
"history": "",
|
| 711 |
+
"last_amended": "2006-12-12",
|
| 712 |
+
"current_to": "2024-04-01",
|
| 713 |
+
"citation": "Quarantine Act, s. 40",
|
| 714 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-40.html"
|
| 715 |
+
},
|
| 716 |
+
{
|
| 717 |
+
"id": "Q-1.1-s40.1",
|
| 718 |
+
"act_code": "Q-1.1",
|
| 719 |
+
"act_short": "Quarantine Act",
|
| 720 |
+
"act_name": "Quarantine Act",
|
| 721 |
+
"section": "40.1",
|
| 722 |
+
"marginal_note": "When compliance not required",
|
| 723 |
+
"part": "",
|
| 724 |
+
"division": "",
|
| 725 |
+
"heading": "Conveyances",
|
| 726 |
+
"text": "40.1 No person is required to carry out an order under subsection 39(1) if doing so would expose them to a danger as defined in subsection 122(1) of the Canada Labour Code.",
|
| 727 |
+
"history": "",
|
| 728 |
+
"last_amended": "2006-12-12",
|
| 729 |
+
"current_to": "2024-04-01",
|
| 730 |
+
"citation": "Quarantine Act, s. 40.1",
|
| 731 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-40.1.html"
|
| 732 |
+
},
|
| 733 |
+
{
|
| 734 |
+
"id": "Q-1.1-s40.2",
|
| 735 |
+
"act_code": "Q-1.1",
|
| 736 |
+
"act_short": "Quarantine Act",
|
| 737 |
+
"act_name": "Quarantine Act",
|
| 738 |
+
"section": "40.2",
|
| 739 |
+
"marginal_note": "Notice to provincial public health authority",
|
| 740 |
+
"part": "",
|
| 741 |
+
"division": "",
|
| 742 |
+
"heading": "Conveyances",
|
| 743 |
+
"text": "40.2\n(1) As soon as practicable, an environmental health officer shall inform the provincial public health authority of any province concerned if\n(a) a conveyance has been diverted under section 35; or\n(b) the environmental health officer has ordered anything to be done under subsection 39(1).\n(2) [Disclosure of information] The environmental health officer shall disclose to the provincial public health authority the following information regarding the conveyance, to the extent that it is known:\n(a) a description of the conveyance and its itinerary;\n(b) everything ordered to be done under subsection 39(1) and the reasons why it was ordered to be done;\n(c) the communicable disease in question; and\n(d) the name and location of the operator of the conveyance and of any person using it for the business of carrying persons or cargo.\n(3) [Disclosure to provincial public health authority] The environmental health officer may disclose confidential business information or personal information obtained under this Act to the provincial public health authority if the officer has reasonable grounds to believe that the disclosure is necessary to prevent the spread of a communicable disease.",
|
| 744 |
+
"history": "",
|
| 745 |
+
"last_amended": "2006-12-12",
|
| 746 |
+
"current_to": "2024-04-01",
|
| 747 |
+
"citation": "Quarantine Act, s. 40.2",
|
| 748 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-40.2.html"
|
| 749 |
+
},
|
| 750 |
+
{
|
| 751 |
+
"id": "Q-1.1-s41",
|
| 752 |
+
"act_code": "Q-1.1",
|
| 753 |
+
"act_short": "Quarantine Act",
|
| 754 |
+
"act_name": "Quarantine Act",
|
| 755 |
+
"section": "41",
|
| 756 |
+
"marginal_note": "Costs of carrying out order",
|
| 757 |
+
"part": "",
|
| 758 |
+
"division": "",
|
| 759 |
+
"heading": "Conveyances",
|
| 760 |
+
"text": "41\n(1) A person who is subject to an order referred to in section 39 shall pay any cost of carrying out the order.\n(2) [Detention until costs paid] An environmental health officer may detain the conveyance and its contents until the cost of carrying out the order has been paid.",
|
| 761 |
+
"history": "",
|
| 762 |
+
"last_amended": "2006-12-12",
|
| 763 |
+
"current_to": "2024-04-01",
|
| 764 |
+
"citation": "Quarantine Act, s. 41",
|
| 765 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-41.html"
|
| 766 |
+
},
|
| 767 |
+
{
|
| 768 |
+
"id": "Q-1.1-s42",
|
| 769 |
+
"act_code": "Q-1.1",
|
| 770 |
+
"act_short": "Quarantine Act",
|
| 771 |
+
"act_name": "Quarantine Act",
|
| 772 |
+
"section": "42",
|
| 773 |
+
"marginal_note": "Minister may require security deposit from owner of conveyance",
|
| 774 |
+
"part": "",
|
| 775 |
+
"division": "",
|
| 776 |
+
"heading": "Conveyances",
|
| 777 |
+
"text": "42\n(1) A person engaged in the business of carrying persons or cargo shall, when required by the Minister to do so, deposit with the Minister any sum of money or other security that the Minister considers necessary as a guarantee that the person will comply with this Act.\n(2) [Payment out of security deposited] The Minister may pay from the deposited money, or the proceeds of sale of the security, a fine or costs incurred by the person if\n(a) the person fails to pay any amount under subsection 41(1) or publication costs under paragraph 80(1)(g) or subsection 80(3); or\n(b) the person is convicted of an offence under this Act and fails to pay a fine.\n(3) [Return of security] The Minister shall return the money or other security if, in the opinion of the Minister, that security is no longer required.",
|
| 778 |
+
"history": "",
|
| 779 |
+
"last_amended": "2006-12-12",
|
| 780 |
+
"current_to": "2024-04-01",
|
| 781 |
+
"citation": "Quarantine Act, s. 42",
|
| 782 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-42.html"
|
| 783 |
+
},
|
| 784 |
+
{
|
| 785 |
+
"id": "Q-1.1-s43",
|
| 786 |
+
"act_code": "Q-1.1",
|
| 787 |
+
"act_short": "Quarantine Act",
|
| 788 |
+
"act_name": "Quarantine Act",
|
| 789 |
+
"section": "43",
|
| 790 |
+
"marginal_note": "Compensation to owners",
|
| 791 |
+
"part": "",
|
| 792 |
+
"division": "",
|
| 793 |
+
"heading": "Conveyances",
|
| 794 |
+
"text": "43 The Minister may compensate the owner of any conveyance, cargo or other thing that is damaged or destroyed under section 39 or 40 in an amount equal to the market value, as determined by the Minister, that the property had at the time of its damage or destruction, less any amount that the owner received or is entitled to receive in respect of it from salvage, insurance or any other source.",
|
| 795 |
+
"history": "",
|
| 796 |
+
"last_amended": "2006-12-12",
|
| 797 |
+
"current_to": "2024-04-01",
|
| 798 |
+
"citation": "Quarantine Act, s. 43",
|
| 799 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-43.html"
|
| 800 |
+
},
|
| 801 |
+
{
|
| 802 |
+
"id": "Q-1.1-s44",
|
| 803 |
+
"act_code": "Q-1.1",
|
| 804 |
+
"act_short": "Quarantine Act",
|
| 805 |
+
"act_name": "Quarantine Act",
|
| 806 |
+
"section": "44",
|
| 807 |
+
"marginal_note": "Obligation of operator",
|
| 808 |
+
"part": "",
|
| 809 |
+
"division": "",
|
| 810 |
+
"heading": "Cadavers, Body Parts and Other Human Remains",
|
| 811 |
+
"text": "44\n(1) Every operator carrying a cadaver, a body part or other human remains into Canada shall provide a copy of the death certificate to the screening officer at the entry point.\n(2) [No death certificate or communicable disease] If the operator does not provide a death certificate or the screening officer has reasonable grounds to suspect that the cadaver, body part or other human remains have or might have a communicable disease or are infested with vectors, the screening officer shall immediately inform a quarantine officer and follow any directive of that officer respecting the matter.\n(3) [Directive] The operator shall comply with any directive of the quarantine officer respecting the cadaver, body part or other human remains.",
|
| 812 |
+
"history": "",
|
| 813 |
+
"last_amended": "2006-12-12",
|
| 814 |
+
"current_to": "2024-04-01",
|
| 815 |
+
"citation": "Quarantine Act, s. 44",
|
| 816 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-44.html"
|
| 817 |
+
},
|
| 818 |
+
{
|
| 819 |
+
"id": "Q-1.1-s45",
|
| 820 |
+
"act_code": "Q-1.1",
|
| 821 |
+
"act_short": "Quarantine Act",
|
| 822 |
+
"act_name": "Quarantine Act",
|
| 823 |
+
"section": "45",
|
| 824 |
+
"marginal_note": "Prohibition",
|
| 825 |
+
"part": "",
|
| 826 |
+
"division": "",
|
| 827 |
+
"heading": "Cadavers, Body Parts and Other Human Remains",
|
| 828 |
+
"text": "45 No person shall export a cadaver, a body part or other human remains that have or might have a communicable disease listed in the schedule unless the exportation is in accordance with the regulations or is authorized by the Minister.",
|
| 829 |
+
"history": "",
|
| 830 |
+
"last_amended": "2006-12-12",
|
| 831 |
+
"current_to": "2024-04-01",
|
| 832 |
+
"citation": "Quarantine Act, s. 45",
|
| 833 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-45.html"
|
| 834 |
+
},
|
| 835 |
+
{
|
| 836 |
+
"id": "Q-1.1-s46",
|
| 837 |
+
"act_code": "Q-1.1",
|
| 838 |
+
"act_short": "Quarantine Act",
|
| 839 |
+
"act_name": "Quarantine Act",
|
| 840 |
+
"section": "46",
|
| 841 |
+
"marginal_note": "Exception",
|
| 842 |
+
"part": "",
|
| 843 |
+
"division": "",
|
| 844 |
+
"heading": "Cadavers, Body Parts and Other Human Remains",
|
| 845 |
+
"text": "46 Sections 44 and 45 do not apply to the import or export of cells, tissues or organs for transplantation that are imported or exported in accordance with the Food and Drugs Act.",
|
| 846 |
+
"history": "",
|
| 847 |
+
"last_amended": "2006-12-12",
|
| 848 |
+
"current_to": "2024-04-01",
|
| 849 |
+
"citation": "Quarantine Act, s. 46",
|
| 850 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-46.html"
|
| 851 |
+
},
|
| 852 |
+
{
|
| 853 |
+
"id": "Q-1.1-s47",
|
| 854 |
+
"act_code": "Q-1.1",
|
| 855 |
+
"act_short": "Quarantine Act",
|
| 856 |
+
"act_name": "Quarantine Act",
|
| 857 |
+
"section": "47",
|
| 858 |
+
"marginal_note": "Powers of inspection",
|
| 859 |
+
"part": "",
|
| 860 |
+
"division": "",
|
| 861 |
+
"heading": "General Powers",
|
| 862 |
+
"text": "47\n(1) A quarantine officer or an environmental health officer may, to determine whether a conveyance or place, or any contents within it, could be the source of a communicable disease, or whether a traveller has or might have a communicable disease or is infested with vectors, and to enforce this Act,\n(a) stop a conveyance, at an entry or departure point or anywhere else in Canada, and direct that it be moved to a place where an inspection can be carried out;\n(b) enter and inspect the conveyance or any place where the conveyance has been;\n(c) open and examine any cargo, container, baggage, package or other thing;\n(d) require any person to produce any record under any terms and conditions that, in the opinion of the officer, are necessary to carry out the inspection;\n(e) except with respect to a traveller, conduct or cause to be conducted any test or analysis or take or cause to be taken any sample; and\n(f) except with respect to a traveller, take any measurement.\n(2) [Operation of data processing systems and copying equipment] In conducting the inspection, the officer may\n(a) use or cause to be used any computer or data processing system to examine any data contained in or available to it;\n(b) obtain data in the form of a printout or other intelligible output and take the printout or other output for examination or copying; and\n(c) use or cause to be used any copying equipment to make copies of any record or other document.\n(3) [Powers of the screening officer] A screening officer may exercise any of the powers set out in this section, other than those set out in paragraph (1)(e).",
|
| 863 |
+
"history": "",
|
| 864 |
+
"last_amended": "2006-12-12",
|
| 865 |
+
"current_to": "2024-04-01",
|
| 866 |
+
"citation": "Quarantine Act, s. 47",
|
| 867 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-47.html"
|
| 868 |
+
},
|
| 869 |
+
{
|
| 870 |
+
"id": "Q-1.1-s48",
|
| 871 |
+
"act_code": "Q-1.1",
|
| 872 |
+
"act_short": "Quarantine Act",
|
| 873 |
+
"act_name": "Quarantine Act",
|
| 874 |
+
"section": "48",
|
| 875 |
+
"marginal_note": "Warrant required to enter dwelling-place",
|
| 876 |
+
"part": "",
|
| 877 |
+
"division": "",
|
| 878 |
+
"heading": "General Powers",
|
| 879 |
+
"text": "48\n(1) A quarantine officer and an environmental health officer may not enter or inspect a dwelling-place without the consent of its occupant except under the authority of a warrant.\n(2) [Authority to issue warrant] A justice may, on ex parte application, at any time sign and issue a warrant authorizing the officer named in it to enter and inspect a dwelling-place, subject to any conditions that may be specified in the warrant, if the justice is satisfied by information on oath that\n(a) the dwelling-place or its contents could be the source of a communicable disease;\n(b) entry to the dwelling-place is necessary for a purpose relating to the administration of this Act; and\n(c) entry to the dwelling-place has been refused or there are reasonable grounds to believe that it will be refused.\n(3) [Use of force] A quarantine officer or an environmental health officer who executes a warrant shall not use force unless they are accompanied by a peace officer and the use of force is specifically authorized in the warrant.",
|
| 880 |
+
"history": "",
|
| 881 |
+
"last_amended": "2006-12-12",
|
| 882 |
+
"current_to": "2024-04-01",
|
| 883 |
+
"citation": "Quarantine Act, s. 48",
|
| 884 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-48.html"
|
| 885 |
+
},
|
| 886 |
+
{
|
| 887 |
+
"id": "Q-1.1-s49",
|
| 888 |
+
"act_code": "Q-1.1",
|
| 889 |
+
"act_short": "Quarantine Act",
|
| 890 |
+
"act_name": "Quarantine Act",
|
| 891 |
+
"section": "49",
|
| 892 |
+
"marginal_note": "Public officer powers",
|
| 893 |
+
"part": "",
|
| 894 |
+
"division": "",
|
| 895 |
+
"heading": "General Powers",
|
| 896 |
+
"text": "49 A quarantine officer and an environmental health officer are public officers for the purposes of the application of section 487 of the Criminal Code in respect of an offence under this Act.",
|
| 897 |
+
"history": "",
|
| 898 |
+
"last_amended": "2006-12-12",
|
| 899 |
+
"current_to": "2024-04-01",
|
| 900 |
+
"citation": "Quarantine Act, s. 49",
|
| 901 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-49.html"
|
| 902 |
+
},
|
| 903 |
+
{
|
| 904 |
+
"id": "Q-1.1-s50",
|
| 905 |
+
"act_code": "Q-1.1",
|
| 906 |
+
"act_short": "Quarantine Act",
|
| 907 |
+
"act_name": "Quarantine Act",
|
| 908 |
+
"section": "50",
|
| 909 |
+
"marginal_note": "Assistance to quarantine officer or environmental health officer",
|
| 910 |
+
"part": "",
|
| 911 |
+
"division": "",
|
| 912 |
+
"heading": "General Powers",
|
| 913 |
+
"text": "50 The owner or the person in charge of a place or conveyance inspected by a quarantine officer or an environmental health officer under section 47 and any person found in the place shall\n(a) give the officer all reasonable assistance to enable the officer to perform their duties and functions under this Act; and\n(b) provide the officer with any information relevant to the administration of this Act that the officer may reasonably request.",
|
| 914 |
+
"history": "",
|
| 915 |
+
"last_amended": "2006-12-12",
|
| 916 |
+
"current_to": "2024-04-01",
|
| 917 |
+
"citation": "Quarantine Act, s. 50",
|
| 918 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-50.html"
|
| 919 |
+
},
|
| 920 |
+
{
|
| 921 |
+
"id": "Q-1.1-s51",
|
| 922 |
+
"act_code": "Q-1.1",
|
| 923 |
+
"act_short": "Quarantine Act",
|
| 924 |
+
"act_name": "Quarantine Act",
|
| 925 |
+
"section": "51",
|
| 926 |
+
"marginal_note": "Compelling production of information",
|
| 927 |
+
"part": "",
|
| 928 |
+
"division": "",
|
| 929 |
+
"heading": "General Powers",
|
| 930 |
+
"text": "51 A quarantine officer or an environmental health officer may order any person to provide any information or record in their possession about a traveller that the officer may reasonably require in the performance of the officer’s duties and functions under this Act, or to give the officer access to such information.",
|
| 931 |
+
"history": "",
|
| 932 |
+
"last_amended": "2006-12-12",
|
| 933 |
+
"current_to": "2024-04-01",
|
| 934 |
+
"citation": "Quarantine Act, s. 51",
|
| 935 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-51.html"
|
| 936 |
+
},
|
| 937 |
+
{
|
| 938 |
+
"id": "Q-1.1-s52",
|
| 939 |
+
"act_code": "Q-1.1",
|
| 940 |
+
"act_short": "Quarantine Act",
|
| 941 |
+
"act_name": "Quarantine Act",
|
| 942 |
+
"section": "52",
|
| 943 |
+
"marginal_note": "Peace officer to assist officer acting under this Act",
|
| 944 |
+
"part": "",
|
| 945 |
+
"division": "",
|
| 946 |
+
"heading": "General Powers",
|
| 947 |
+
"text": "52 A peace officer shall provide any assistance that an officer acting under this Act may request for the purpose of administering or enforcing this Act.",
|
| 948 |
+
"history": "",
|
| 949 |
+
"last_amended": "2006-12-12",
|
| 950 |
+
"current_to": "2024-04-01",
|
| 951 |
+
"citation": "Quarantine Act, s. 52",
|
| 952 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-52.html"
|
| 953 |
+
},
|
| 954 |
+
{
|
| 955 |
+
"id": "Q-1.1-s53",
|
| 956 |
+
"act_code": "Q-1.1",
|
| 957 |
+
"act_short": "Quarantine Act",
|
| 958 |
+
"act_name": "Quarantine Act",
|
| 959 |
+
"section": "53",
|
| 960 |
+
"marginal_note": "Exercise of powers outside Canada",
|
| 961 |
+
"part": "",
|
| 962 |
+
"division": "",
|
| 963 |
+
"heading": "General Powers",
|
| 964 |
+
"text": "53 A screening officer, a quarantine officer or an environmental health officer may exercise any power or perform any duty or function under this Act respecting a traveller or conveyance at an entry point in another country if doing so does not conflict with the laws of that country.",
|
| 965 |
+
"history": "",
|
| 966 |
+
"last_amended": "2006-12-12",
|
| 967 |
+
"current_to": "2024-04-01",
|
| 968 |
+
"citation": "Quarantine Act, s. 53",
|
| 969 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-53.html"
|
| 970 |
+
},
|
| 971 |
+
{
|
| 972 |
+
"id": "Q-1.1-s54",
|
| 973 |
+
"act_code": "Q-1.1",
|
| 974 |
+
"act_short": "Quarantine Act",
|
| 975 |
+
"act_name": "Quarantine Act",
|
| 976 |
+
"section": "54",
|
| 977 |
+
"marginal_note": "Report of contravention",
|
| 978 |
+
"part": "",
|
| 979 |
+
"division": "",
|
| 980 |
+
"heading": "Information",
|
| 981 |
+
"text": "54\n(1) A person who, in good faith, reports to a screening officer, a quarantine officer or an environmental health officer a contravention of this Act by another person, or the reasonable likelihood of such a contravention, may request that their identity, and any information that could reasonably reveal their identity, not be disclosed to their employer or the other person.\n(2) [Confidentiality] Subject to any other Act of Parliament, no person shall disclose or permit the disclosure of that identity or information unless authorized in writing by the person who made the request.\n(3) [Protection of person] Despite any other Act of Parliament, no person shall dismiss, suspend, demote, discipline, deny a benefit of employment to, harass or otherwise disadvantage a person for having\n(a) made a report under subsection (1);\n(b) refused or stated an intention of refusing to do anything that they believed on reasonable grounds was or would be a contravention under this Act; or\n(c) done or stated an intention to do anything that they believed on reasonable grounds was required under this Act.",
|
| 982 |
+
"history": "",
|
| 983 |
+
"last_amended": "2006-12-12",
|
| 984 |
+
"current_to": "2024-04-01",
|
| 985 |
+
"citation": "Quarantine Act, s. 54",
|
| 986 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-54.html"
|
| 987 |
+
},
|
| 988 |
+
{
|
| 989 |
+
"id": "Q-1.1-s55",
|
| 990 |
+
"act_code": "Q-1.1",
|
| 991 |
+
"act_short": "Quarantine Act",
|
| 992 |
+
"act_name": "Quarantine Act",
|
| 993 |
+
"section": "55",
|
| 994 |
+
"marginal_note": "Collection of medical information",
|
| 995 |
+
"part": "",
|
| 996 |
+
"division": "",
|
| 997 |
+
"heading": "Information",
|
| 998 |
+
"text": "55 The Minister may collect relevant medical information in order to carry out the purposes of this Act.",
|
| 999 |
+
"history": "",
|
| 1000 |
+
"last_amended": "2006-12-12",
|
| 1001 |
+
"current_to": "2024-04-01",
|
| 1002 |
+
"citation": "Quarantine Act, s. 55",
|
| 1003 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-55.html"
|
| 1004 |
+
},
|
| 1005 |
+
{
|
| 1006 |
+
"id": "Q-1.1-s56",
|
| 1007 |
+
"act_code": "Q-1.1",
|
| 1008 |
+
"act_short": "Quarantine Act",
|
| 1009 |
+
"act_name": "Quarantine Act",
|
| 1010 |
+
"section": "56",
|
| 1011 |
+
"marginal_note": "Disclosure to governments, etc.",
|
| 1012 |
+
"part": "",
|
| 1013 |
+
"division": "",
|
| 1014 |
+
"heading": "Information",
|
| 1015 |
+
"text": "56\n(1) The Minister may disclose confidential business information or personal information obtained under this Act to a department or to an agency of the Government of Canada or of a province, a government or public health authority, whether domestic or foreign, a health practitioner or an international health organization if the Minister has reasonable grounds to believe that the disclosure is necessary to prevent the spread of a communicable disease or to enable Canada to fulfill its international obligations.\n(2) [Disclosure to person in transport business] The Minister may disclose personal information obtained under this Act to a person engaged in the business of carrying persons or cargo, or to an international transportation organization, if the Minister has reasonable grounds to believe that the person to whom the information relates has or might have a communicable disease, or has recently been in close proximity to a person who has or might have a communicable disease, and that the disclosure is necessary to prevent the spread of the disease.\n(3) [Notification of disclosure] If any personal information or confidential business information is disclosed under this section, the Minister shall notify the person or business to whom the information relates of the disclosure.",
|
| 1016 |
+
"history": "",
|
| 1017 |
+
"last_amended": "2006-12-12",
|
| 1018 |
+
"current_to": "2024-04-01",
|
| 1019 |
+
"citation": "Quarantine Act, s. 56",
|
| 1020 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-56.html"
|
| 1021 |
+
},
|
| 1022 |
+
{
|
| 1023 |
+
"id": "Q-1.1-s57",
|
| 1024 |
+
"act_code": "Q-1.1",
|
| 1025 |
+
"act_short": "Quarantine Act",
|
| 1026 |
+
"act_name": "Quarantine Act",
|
| 1027 |
+
"section": "57",
|
| 1028 |
+
"marginal_note": "Disclosure for law enforcement purposes",
|
| 1029 |
+
"part": "",
|
| 1030 |
+
"division": "",
|
| 1031 |
+
"heading": "Information",
|
| 1032 |
+
"text": "57 If the Minister has reasonable grounds to suspect that information obtained in the administration of this Act would be relevant to investigating or prosecuting an offence under Part II.1 of the Criminal Code involving an infectious agent or biological toxin, the Minister may disclose any of the following information to a peace officer:\n(a) the name, sex, age and date of birth of the traveller;\n(b) a photograph of the traveller and any other means of identifying them;\n(c) the traveller’s itinerary, home address and location;\n(d) the description of any conveyance used for carrying the traveller;\n(e) the name of the infectious agent or biological toxin; and\n(f) the manner in which the traveller may have acquired the communicable disease or vectors.",
|
| 1033 |
+
"history": "",
|
| 1034 |
+
"last_amended": "2006-12-12",
|
| 1035 |
+
"current_to": "2024-04-01",
|
| 1036 |
+
"citation": "Quarantine Act, s. 57",
|
| 1037 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-57.html"
|
| 1038 |
+
},
|
| 1039 |
+
{
|
| 1040 |
+
"id": "Q-1.1-s58",
|
| 1041 |
+
"act_code": "Q-1.1",
|
| 1042 |
+
"act_short": "Quarantine Act",
|
| 1043 |
+
"act_name": "Quarantine Act",
|
| 1044 |
+
"section": "58",
|
| 1045 |
+
"marginal_note": "Order prohibiting entry into Canada",
|
| 1046 |
+
"part": "",
|
| 1047 |
+
"division": "",
|
| 1048 |
+
"heading": "Emergency Orders",
|
| 1049 |
+
"text": "58\n(1) The Governor in Council may make an order prohibiting or subjecting to any condition the entry into Canada of any class of persons who have been in a foreign country or a specified part of a foreign country if the Governor in Council is of the opinion that\n(a) there is an outbreak of a communicable disease in the foreign country;\n(b) the introduction or spread of the disease would pose an imminent and severe risk to public health in Canada;\n(c) the entry of members of that class of persons into Canada may introduce or contribute to the spread of the communicable disease in Canada; and\n(d) no reasonable alternatives to prevent the introduction or spread of the disease are available.\n(2) [Effect of order] The order has effect for the period specified in it and may be renewed if the conditions in subsection (1) continue to apply.",
|
| 1050 |
+
"history": "",
|
| 1051 |
+
"last_amended": "2006-12-12",
|
| 1052 |
+
"current_to": "2024-04-01",
|
| 1053 |
+
"citation": "Quarantine Act, s. 58",
|
| 1054 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-58.html"
|
| 1055 |
+
},
|
| 1056 |
+
{
|
| 1057 |
+
"id": "Q-1.1-s59",
|
| 1058 |
+
"act_code": "Q-1.1",
|
| 1059 |
+
"act_short": "Quarantine Act",
|
| 1060 |
+
"act_name": "Quarantine Act",
|
| 1061 |
+
"section": "59",
|
| 1062 |
+
"marginal_note": "Prohibition on importing",
|
| 1063 |
+
"part": "",
|
| 1064 |
+
"division": "",
|
| 1065 |
+
"heading": "Emergency Orders",
|
| 1066 |
+
"text": "59 The Governor in Council may make an order prohibiting or subjecting to any condition the importing of any thing into Canada or any part of Canada, either generally or from any place named in the order, for any period that the Governor in Council considers necessary for the purpose of preventing the introduction or spread of a communicable disease in Canada.",
|
| 1067 |
+
"history": "",
|
| 1068 |
+
"last_amended": "2006-12-12",
|
| 1069 |
+
"current_to": "2024-04-01",
|
| 1070 |
+
"citation": "Quarantine Act, s. 59",
|
| 1071 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-59.html"
|
| 1072 |
+
},
|
| 1073 |
+
{
|
| 1074 |
+
"id": "Q-1.1-s60",
|
| 1075 |
+
"act_code": "Q-1.1",
|
| 1076 |
+
"act_short": "Quarantine Act",
|
| 1077 |
+
"act_name": "Quarantine Act",
|
| 1078 |
+
"section": "60",
|
| 1079 |
+
"marginal_note": "Interim orders",
|
| 1080 |
+
"part": "",
|
| 1081 |
+
"division": "",
|
| 1082 |
+
"heading": "Emergency Orders",
|
| 1083 |
+
"text": "60\n(1) The Minister may make an interim order containing any provision that could be contained in a regulation made under section 62 or 63 if the Minister is of the opinion that immediate action is required to deal with a significant risk, direct or indirect, to public health.\n(2) [Cessation of effect] The interim order has effect from the time that it is made but ceases to have effect on the earliest of\n(a) 14 days after the day on which it is made, unless it is approved by the Governor in Council,\n(b) the day on which it is repealed,\n(c) the day on which a regulation made under section 62 or 63 that has the same effect as the interim order comes into force, and\n(d) one year after the day on which it is made or any shorter period that it specifies.\n(3) [Deeming] For the purpose of any provision of this Act other than this section, any reference to regulations made under this Act is deemed to include interim orders, and any reference to a regulation made under a specified provision of this Act is deemed to include a reference to any portion of an interim order containing a provision that may be contained in a regulation made under the specified provision.",
|
| 1084 |
+
"history": "",
|
| 1085 |
+
"last_amended": "2006-12-12",
|
| 1086 |
+
"current_to": "2024-04-01",
|
| 1087 |
+
"citation": "Quarantine Act, s. 60",
|
| 1088 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-60.html"
|
| 1089 |
+
},
|
| 1090 |
+
{
|
| 1091 |
+
"id": "Q-1.1-s61",
|
| 1092 |
+
"act_code": "Q-1.1",
|
| 1093 |
+
"act_short": "Quarantine Act",
|
| 1094 |
+
"act_name": "Quarantine Act",
|
| 1095 |
+
"section": "61",
|
| 1096 |
+
"marginal_note": "Exemption from Statutory Instruments Act",
|
| 1097 |
+
"part": "",
|
| 1098 |
+
"division": "",
|
| 1099 |
+
"heading": "Emergency Orders",
|
| 1100 |
+
"text": "61\n(1) An order made under any of sections 58 to 60\n(a) is exempt from the application of sections 3, 5 and 11 of the Statutory Instruments Act; and\n(b) shall be published in the Canada Gazette within 23 days after the day on which it is made.\n(2) [Tabling of order] A copy of the order shall be tabled in each House of Parliament within 15 days after the day on which it is made.\n(3) [House not sitting] In order to comply with subsection (2), the order may be sent to the Clerk of the House if the House is not sitting.\n(4) [Contravention of unpublished order] No person shall be convicted of an offence consisting of a contravention of the order if, at the time of the alleged contravention, the order had not been published in the Canada Gazette, unless it is proved that, at the time of the alleged contravention, the person had been notified of the order or reasonable steps had been taken to bring the purport of the order to the notice of persons likely to be affected by it.",
|
| 1101 |
+
"history": "",
|
| 1102 |
+
"last_amended": "2006-12-12",
|
| 1103 |
+
"current_to": "2024-04-01",
|
| 1104 |
+
"citation": "Quarantine Act, s. 61",
|
| 1105 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-61.html"
|
| 1106 |
+
},
|
| 1107 |
+
{
|
| 1108 |
+
"id": "Q-1.1-s62",
|
| 1109 |
+
"act_code": "Q-1.1",
|
| 1110 |
+
"act_short": "Quarantine Act",
|
| 1111 |
+
"act_name": "Quarantine Act",
|
| 1112 |
+
"section": "62",
|
| 1113 |
+
"marginal_note": "Governor in Council",
|
| 1114 |
+
"part": "",
|
| 1115 |
+
"division": "",
|
| 1116 |
+
"heading": "Regulations",
|
| 1117 |
+
"text": "62 The Governor in Council may make regulations\n(a) respecting physical examinations carried out for the purposes of a health assessment;\n(a.1) respecting any compensation that is to be paid under this Act;\n(b) respecting the types of costs that a person is not required to pay under section 41;\n(c) respecting the location, design, construction, installation, operation, maintenance, marking and modification of a quarantine facility or quarantine station;\n(c.1) respecting the specifications for areas and facilities provided under subsection 6(2);\n(d) respecting the process of review under section 29;\n(e) respecting the information to be provided by the operator of a conveyance and any other traveller on board;\n(f) respecting the information to be provided by a traveller;\n(g) after consultation with the Privacy Commissioner, as defined in the Privacy Act, respecting the protection of personal information;\n(h) respecting the place and manner of embarkation of travellers at a departure point, or disembarkation of travellers at an entry point, and the loading and unloading of goods and cargo onto and from a conveyance;\n(i) respecting the methods of disinfecting, disinfesting, decontaminating or fumigating conveyances, goods, cargo and places and of disinfesting travellers;\n(j) respecting the declaration of health referred to in paragraph 39(1)(f);\n(k) respecting the carrying into Canada of, the exporting from Canada of, or the transportation and the handling of, cadavers, body parts or other human remains that have, or are suspected of having, a communicable disease or that are, or are suspected of being, infested with vectors;\n(l) respecting the process for applications to the Federal Court for matters under this Act;\n(m) exempting any person or class of persons from the application of all or any of the provisions of this Act;\n(n) respecting anything that may be prescribed under this Act; and\n(o) generally, for carrying out the purposes and provisions of this Act.",
|
| 1118 |
+
"history": "",
|
| 1119 |
+
"last_amended": "2006-12-12",
|
| 1120 |
+
"current_to": "2024-04-01",
|
| 1121 |
+
"citation": "Quarantine Act, s. 62",
|
| 1122 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-62.html"
|
| 1123 |
+
},
|
| 1124 |
+
{
|
| 1125 |
+
"id": "Q-1.1-s62.1",
|
| 1126 |
+
"act_code": "Q-1.1",
|
| 1127 |
+
"act_short": "Quarantine Act",
|
| 1128 |
+
"act_name": "Quarantine Act",
|
| 1129 |
+
"section": "62.1",
|
| 1130 |
+
"marginal_note": "",
|
| 1131 |
+
"part": "",
|
| 1132 |
+
"division": "",
|
| 1133 |
+
"heading": "Regulations",
|
| 1134 |
+
"text": "62.1 [Repealed, 2019, c. 29, s. 220]",
|
| 1135 |
+
"history": "",
|
| 1136 |
+
"last_amended": "2019-06-21",
|
| 1137 |
+
"current_to": "2024-04-01",
|
| 1138 |
+
"citation": "Quarantine Act, s. 62.1",
|
| 1139 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-62.1.html"
|
| 1140 |
+
},
|
| 1141 |
+
{
|
| 1142 |
+
"id": "Q-1.1-s62.2",
|
| 1143 |
+
"act_code": "Q-1.1",
|
| 1144 |
+
"act_short": "Quarantine Act",
|
| 1145 |
+
"act_name": "Quarantine Act",
|
| 1146 |
+
"section": "62.2",
|
| 1147 |
+
"marginal_note": "",
|
| 1148 |
+
"part": "",
|
| 1149 |
+
"division": "",
|
| 1150 |
+
"heading": "Regulations",
|
| 1151 |
+
"text": "62.2 [Repealed, 2019, c. 29, s. 220]",
|
| 1152 |
+
"history": "",
|
| 1153 |
+
"last_amended": "2019-06-21",
|
| 1154 |
+
"current_to": "2024-04-01",
|
| 1155 |
+
"citation": "Quarantine Act, s. 62.2",
|
| 1156 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-62.2.html"
|
| 1157 |
+
},
|
| 1158 |
+
{
|
| 1159 |
+
"id": "Q-1.1-s63",
|
| 1160 |
+
"act_code": "Q-1.1",
|
| 1161 |
+
"act_short": "Quarantine Act",
|
| 1162 |
+
"act_name": "Quarantine Act",
|
| 1163 |
+
"section": "63",
|
| 1164 |
+
"marginal_note": "Ministerial regulations",
|
| 1165 |
+
"part": "",
|
| 1166 |
+
"division": "",
|
| 1167 |
+
"heading": "Regulations",
|
| 1168 |
+
"text": "63 The Minister may make regulations amending the schedule by adding, deleting or amending the name of any communicable disease.",
|
| 1169 |
+
"history": "2005, c. 20, s. 63; 2007, c. 27, s. 2",
|
| 1170 |
+
"last_amended": "2007-06-22",
|
| 1171 |
+
"current_to": "2024-04-01",
|
| 1172 |
+
"citation": "Quarantine Act, s. 63",
|
| 1173 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-63.html"
|
| 1174 |
+
},
|
| 1175 |
+
{
|
| 1176 |
+
"id": "Q-1.1-s64",
|
| 1177 |
+
"act_code": "Q-1.1",
|
| 1178 |
+
"act_short": "Quarantine Act",
|
| 1179 |
+
"act_name": "Quarantine Act",
|
| 1180 |
+
"section": "64",
|
| 1181 |
+
"marginal_note": "Orders not regulations",
|
| 1182 |
+
"part": "",
|
| 1183 |
+
"division": "",
|
| 1184 |
+
"heading": "Statutory Instruments Act",
|
| 1185 |
+
"text": "64 For greater certainty, orders made under this Act by the Minister, a screening officer, a quarantine officer or an environmental health officer, including orders made under subsection 15(3) or 25(1), section 26 or 35, subsection 39(1) or 44(3) or section 51, are not regulations for the purposes of the Statutory Instruments Act.",
|
| 1186 |
+
"history": "",
|
| 1187 |
+
"last_amended": "2006-12-12",
|
| 1188 |
+
"current_to": "2024-04-01",
|
| 1189 |
+
"citation": "Quarantine Act, s. 64",
|
| 1190 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-64.html"
|
| 1191 |
+
},
|
| 1192 |
+
{
|
| 1193 |
+
"id": "Q-1.1-s65",
|
| 1194 |
+
"act_code": "Q-1.1",
|
| 1195 |
+
"act_short": "Quarantine Act",
|
| 1196 |
+
"act_name": "Quarantine Act",
|
| 1197 |
+
"section": "65",
|
| 1198 |
+
"marginal_note": "Entering quarantine facility",
|
| 1199 |
+
"part": "",
|
| 1200 |
+
"division": "",
|
| 1201 |
+
"heading": "Offences and Punishment",
|
| 1202 |
+
"text": "65\n(1) No person shall enter a quarantine facility without the authorization of a quarantine officer.\n(2) [Leaving quarantine facility] No person shall leave a quarantine facility without the authorization of a quarantine officer.",
|
| 1203 |
+
"history": "",
|
| 1204 |
+
"last_amended": "2006-12-12",
|
| 1205 |
+
"current_to": "2024-04-01",
|
| 1206 |
+
"citation": "Quarantine Act, s. 65",
|
| 1207 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-65.html"
|
| 1208 |
+
},
|
| 1209 |
+
{
|
| 1210 |
+
"id": "Q-1.1-s66",
|
| 1211 |
+
"act_code": "Q-1.1",
|
| 1212 |
+
"act_short": "Quarantine Act",
|
| 1213 |
+
"act_name": "Quarantine Act",
|
| 1214 |
+
"section": "66",
|
| 1215 |
+
"marginal_note": "Obstruction of officer",
|
| 1216 |
+
"part": "",
|
| 1217 |
+
"division": "",
|
| 1218 |
+
"heading": "Offences and Punishment",
|
| 1219 |
+
"text": "66 No person shall hinder or wilfully obstruct a quarantine officer, a screening officer or an environmental health officer who is carrying out their duties or functions under this Act, or make a false or misleading statement, either orally or in writing, to the officer.",
|
| 1220 |
+
"history": "",
|
| 1221 |
+
"last_amended": "2006-12-12",
|
| 1222 |
+
"current_to": "2024-04-01",
|
| 1223 |
+
"citation": "Quarantine Act, s. 66",
|
| 1224 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-66.html"
|
| 1225 |
+
},
|
| 1226 |
+
{
|
| 1227 |
+
"id": "Q-1.1-s67",
|
| 1228 |
+
"act_code": "Q-1.1",
|
| 1229 |
+
"act_short": "Quarantine Act",
|
| 1230 |
+
"act_name": "Quarantine Act",
|
| 1231 |
+
"section": "67",
|
| 1232 |
+
"marginal_note": "Offence committed intentionally",
|
| 1233 |
+
"part": "",
|
| 1234 |
+
"division": "",
|
| 1235 |
+
"heading": "Offences and Punishment",
|
| 1236 |
+
"text": "67\n(1) Every person is guilty of an offence if they cause a risk of imminent death or serious bodily harm to another person while wilfully or recklessly contravening this Act or the regulations.\n(2) [Punishment] Every person who commits an offence under subsection (1) is liable\n(a) on conviction on indictment, to a fine of not more than $1,000,000 or to imprisonment for a term of not more than three years, or to both; and\n(b) on summary conviction, to a fine of not more than $300,000 or to imprisonment for a term of not more than six months, or to both.",
|
| 1237 |
+
"history": "",
|
| 1238 |
+
"last_amended": "2006-12-12",
|
| 1239 |
+
"current_to": "2024-04-01",
|
| 1240 |
+
"citation": "Quarantine Act, s. 67",
|
| 1241 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-67.html"
|
| 1242 |
+
},
|
| 1243 |
+
{
|
| 1244 |
+
"id": "Q-1.1-s68",
|
| 1245 |
+
"act_code": "Q-1.1",
|
| 1246 |
+
"act_short": "Quarantine Act",
|
| 1247 |
+
"act_name": "Quarantine Act",
|
| 1248 |
+
"section": "68",
|
| 1249 |
+
"marginal_note": "Failure to comply",
|
| 1250 |
+
"part": "",
|
| 1251 |
+
"division": "",
|
| 1252 |
+
"heading": "Offences and Punishment",
|
| 1253 |
+
"text": "68 Every person who fails to comply with an obligation imposed under subsection 15(3) or 25(1) or section 26 is guilty of an offence and liable on summary conviction to a fine of not more than $200,000 or to imprisonment for a term of not more than six months, or to both.",
|
| 1254 |
+
"history": "",
|
| 1255 |
+
"last_amended": "2006-12-12",
|
| 1256 |
+
"current_to": "2024-04-01",
|
| 1257 |
+
"citation": "Quarantine Act, s. 68",
|
| 1258 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-68.html"
|
| 1259 |
+
},
|
| 1260 |
+
{
|
| 1261 |
+
"id": "Q-1.1-s69",
|
| 1262 |
+
"act_code": "Q-1.1",
|
| 1263 |
+
"act_short": "Quarantine Act",
|
| 1264 |
+
"act_name": "Quarantine Act",
|
| 1265 |
+
"section": "69",
|
| 1266 |
+
"marginal_note": "Failure to comply",
|
| 1267 |
+
"part": "",
|
| 1268 |
+
"division": "",
|
| 1269 |
+
"heading": "Offences and Punishment",
|
| 1270 |
+
"text": "69 Every person who fails to comply with an obligation imposed under section 35, subsection 39(1) or 44(3) or section 51 is guilty of an offence and liable on summary conviction to a fine of not more than $750,000 or to imprisonment for a term of not more than six months, or to both.",
|
| 1271 |
+
"history": "",
|
| 1272 |
+
"last_amended": "2006-12-12",
|
| 1273 |
+
"current_to": "2024-04-01",
|
| 1274 |
+
"citation": "Quarantine Act, s. 69",
|
| 1275 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-69.html"
|
| 1276 |
+
},
|
| 1277 |
+
{
|
| 1278 |
+
"id": "Q-1.1-s70",
|
| 1279 |
+
"act_code": "Q-1.1",
|
| 1280 |
+
"act_short": "Quarantine Act",
|
| 1281 |
+
"act_name": "Quarantine Act",
|
| 1282 |
+
"section": "70",
|
| 1283 |
+
"marginal_note": "Contravention",
|
| 1284 |
+
"part": "",
|
| 1285 |
+
"division": "",
|
| 1286 |
+
"heading": "Offences and Punishment",
|
| 1287 |
+
"text": "70 Every person who contravenes section 12 or 13, subsection 15(1) or section 65 is guilty of an offence and liable on summary conviction to a fine of not more than $200,000 or to imprisonment for a term of not more than six months, or to both.",
|
| 1288 |
+
"history": "",
|
| 1289 |
+
"last_amended": "2006-12-12",
|
| 1290 |
+
"current_to": "2024-04-01",
|
| 1291 |
+
"citation": "Quarantine Act, s. 70",
|
| 1292 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-70.html"
|
| 1293 |
+
},
|
| 1294 |
+
{
|
| 1295 |
+
"id": "Q-1.1-s71",
|
| 1296 |
+
"act_code": "Q-1.1",
|
| 1297 |
+
"act_short": "Quarantine Act",
|
| 1298 |
+
"act_name": "Quarantine Act",
|
| 1299 |
+
"section": "71",
|
| 1300 |
+
"marginal_note": "Contravention",
|
| 1301 |
+
"part": "",
|
| 1302 |
+
"division": "",
|
| 1303 |
+
"heading": "Offences and Punishment",
|
| 1304 |
+
"text": "71 Every person who contravenes subsection 6(2), 8(1) or 34(2) or (3), section 36 or 38, subsection 42(1), section 45 or 50, subsection 54(3), section 58 or 59 or subsection 73(2) or the regulations is guilty of an offence and liable on summary conviction to a fine of not more than $750,000 or to imprisonment for a term of not more than six months, or to both.",
|
| 1305 |
+
"history": "2005, c. 20, s. 71; 2007, c. 27, s. 3",
|
| 1306 |
+
"last_amended": "2007-06-22",
|
| 1307 |
+
"current_to": "2024-04-01",
|
| 1308 |
+
"citation": "Quarantine Act, s. 71",
|
| 1309 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-71.html"
|
| 1310 |
+
},
|
| 1311 |
+
{
|
| 1312 |
+
"id": "Q-1.1-s72",
|
| 1313 |
+
"act_code": "Q-1.1",
|
| 1314 |
+
"act_short": "Quarantine Act",
|
| 1315 |
+
"act_name": "Quarantine Act",
|
| 1316 |
+
"section": "72",
|
| 1317 |
+
"marginal_note": "Contravention",
|
| 1318 |
+
"part": "",
|
| 1319 |
+
"division": "",
|
| 1320 |
+
"heading": "Offences and Punishment",
|
| 1321 |
+
"text": "72 Every person who contravenes subsection 15(2) or section 66 is guilty of an offence and liable\n(a) on conviction on indictment, to a fine of not more than $500,000 or to imprisonment for a term of not more than three years, or to both; or\n(b) on summary conviction, to a fine of not more than $200,000 or to imprisonment for a term of not more than six months, or to both.",
|
| 1322 |
+
"history": "",
|
| 1323 |
+
"last_amended": "2006-12-12",
|
| 1324 |
+
"current_to": "2024-04-01",
|
| 1325 |
+
"citation": "Quarantine Act, s. 72",
|
| 1326 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-72.html"
|
| 1327 |
+
},
|
| 1328 |
+
{
|
| 1329 |
+
"id": "Q-1.1-s73",
|
| 1330 |
+
"act_code": "Q-1.1",
|
| 1331 |
+
"act_short": "Quarantine Act",
|
| 1332 |
+
"act_name": "Quarantine Act",
|
| 1333 |
+
"section": "73",
|
| 1334 |
+
"marginal_note": "Officers, etc., of corporations",
|
| 1335 |
+
"part": "",
|
| 1336 |
+
"division": "",
|
| 1337 |
+
"heading": "Related Provisions",
|
| 1338 |
+
"text": "73\n(1) If a corporation commits an offence under this Act, any officer, director or agent or mandatary of the corporation who directed, authorized, assented to, acquiesced in or participated in the commission of the offence is a party to, and guilty of, the offence and liable on conviction to the punishment provided for the offence, whether or not the corporation has been prosecuted or convicted.\n(2) [Duty to ensure compliance] Every director and officer of a corporation shall take all reasonable care to ensure that the corporation complies with this Act and the regulations.",
|
| 1339 |
+
"history": "",
|
| 1340 |
+
"last_amended": "2006-12-12",
|
| 1341 |
+
"current_to": "2024-04-01",
|
| 1342 |
+
"citation": "Quarantine Act, s. 73",
|
| 1343 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-73.html"
|
| 1344 |
+
},
|
| 1345 |
+
{
|
| 1346 |
+
"id": "Q-1.1-s74",
|
| 1347 |
+
"act_code": "Q-1.1",
|
| 1348 |
+
"act_short": "Quarantine Act",
|
| 1349 |
+
"act_name": "Quarantine Act",
|
| 1350 |
+
"section": "74",
|
| 1351 |
+
"marginal_note": "Offence by employee or agent or mandatary",
|
| 1352 |
+
"part": "",
|
| 1353 |
+
"division": "",
|
| 1354 |
+
"heading": "Related Provisions",
|
| 1355 |
+
"text": "74 In a prosecution for an offence under this Act, it is sufficient proof of the offence to establish that it was committed by an employee or agent or mandatary of the accused, whether or not the employee or agent or mandatary is identified or has been prosecuted for the offence, unless the accused establishes that\n(a) the offence was committed without the accused’s knowledge or consent; and\n(b) the accused exercised all due diligence to prevent its commission.",
|
| 1356 |
+
"history": "",
|
| 1357 |
+
"last_amended": "2006-12-12",
|
| 1358 |
+
"current_to": "2024-04-01",
|
| 1359 |
+
"citation": "Quarantine Act, s. 74",
|
| 1360 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-74.html"
|
| 1361 |
+
},
|
| 1362 |
+
{
|
| 1363 |
+
"id": "Q-1.1-s75",
|
| 1364 |
+
"act_code": "Q-1.1",
|
| 1365 |
+
"act_short": "Quarantine Act",
|
| 1366 |
+
"act_name": "Quarantine Act",
|
| 1367 |
+
"section": "75",
|
| 1368 |
+
"marginal_note": "Continuing offence",
|
| 1369 |
+
"part": "",
|
| 1370 |
+
"division": "",
|
| 1371 |
+
"heading": "Related Provisions",
|
| 1372 |
+
"text": "75 If an offence under this Act is continued on more than one day, the person who committed it is liable to be convicted for a separate offence for each day on which it is continued.",
|
| 1373 |
+
"history": "",
|
| 1374 |
+
"last_amended": "2006-12-12",
|
| 1375 |
+
"current_to": "2024-04-01",
|
| 1376 |
+
"citation": "Quarantine Act, s. 75",
|
| 1377 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-75.html"
|
| 1378 |
+
},
|
| 1379 |
+
{
|
| 1380 |
+
"id": "Q-1.1-s76",
|
| 1381 |
+
"act_code": "Q-1.1",
|
| 1382 |
+
"act_short": "Quarantine Act",
|
| 1383 |
+
"act_name": "Quarantine Act",
|
| 1384 |
+
"section": "76",
|
| 1385 |
+
"marginal_note": "Limitation period",
|
| 1386 |
+
"part": "",
|
| 1387 |
+
"division": "",
|
| 1388 |
+
"heading": "Related Provisions",
|
| 1389 |
+
"text": "76\n(1) A proceeding by way of summary conviction in respect of an offence under this Act may be commenced at any time within two years after the day on which the Minister becomes aware of the subject-matter of the proceeding.\n(2) [Minister’s certificate] A document purporting to have been issued by the Minister, certifying the day on which the Minister became aware of the subject-matter of the proceeding, is evidence of that fact without proof of the signature or official character of the person appearing to have signed it and without further proof.",
|
| 1390 |
+
"history": "",
|
| 1391 |
+
"last_amended": "2006-12-12",
|
| 1392 |
+
"current_to": "2024-04-01",
|
| 1393 |
+
"citation": "Quarantine Act, s. 76",
|
| 1394 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-76.html"
|
| 1395 |
+
},
|
| 1396 |
+
{
|
| 1397 |
+
"id": "Q-1.1-s77",
|
| 1398 |
+
"act_code": "Q-1.1",
|
| 1399 |
+
"act_short": "Quarantine Act",
|
| 1400 |
+
"act_name": "Quarantine Act",
|
| 1401 |
+
"section": "77",
|
| 1402 |
+
"marginal_note": "Venue",
|
| 1403 |
+
"part": "",
|
| 1404 |
+
"division": "",
|
| 1405 |
+
"heading": "Related Provisions",
|
| 1406 |
+
"text": "77 An information in respect of an offence under this Act may be tried, determined or adjudged by a summary conviction court if the defendant is resident or carrying on business within the territorial division of the court, even if the matter of the information did not arise in that territorial division.",
|
| 1407 |
+
"history": "",
|
| 1408 |
+
"last_amended": "2006-12-12",
|
| 1409 |
+
"current_to": "2024-04-01",
|
| 1410 |
+
"citation": "Quarantine Act, s. 77",
|
| 1411 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-77.html"
|
| 1412 |
+
},
|
| 1413 |
+
{
|
| 1414 |
+
"id": "Q-1.1-s78",
|
| 1415 |
+
"act_code": "Q-1.1",
|
| 1416 |
+
"act_short": "Quarantine Act",
|
| 1417 |
+
"act_name": "Quarantine Act",
|
| 1418 |
+
"section": "78",
|
| 1419 |
+
"marginal_note": "Analysis and examination",
|
| 1420 |
+
"part": "",
|
| 1421 |
+
"division": "",
|
| 1422 |
+
"heading": "Related Provisions",
|
| 1423 |
+
"text": "78\n(1) A quarantine officer or an environmental health officer may submit to an analyst, for analysis or examination, any sample taken under paragraph 47(1)(e).\n(2) [Certificate of analyst] A certificate of an analyst stating that the analyst has analyzed or examined a sample and stating the result of the analysis or examination is evidence of the statements contained in the certificate without proof of the signature or the official character of the person appearing to have signed it.\n(3) [Attendance of analyst] The party against whom the certificate is produced may, with leave of the court, require the attendance of the analyst for the purpose of cross-examination.\n(4) [Notice] The certificate may not be received in evidence unless the party who intends to produce it has given the party against whom it is intended to be produced reasonable notice of that intention, together with a copy of the certificate.",
|
| 1424 |
+
"history": "",
|
| 1425 |
+
"last_amended": "2006-12-12",
|
| 1426 |
+
"current_to": "2024-04-01",
|
| 1427 |
+
"citation": "Quarantine Act, s. 78",
|
| 1428 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-78.html"
|
| 1429 |
+
},
|
| 1430 |
+
{
|
| 1431 |
+
"id": "Q-1.1-s79",
|
| 1432 |
+
"act_code": "Q-1.1",
|
| 1433 |
+
"act_short": "Quarantine Act",
|
| 1434 |
+
"act_name": "Quarantine Act",
|
| 1435 |
+
"section": "79",
|
| 1436 |
+
"marginal_note": "Suspended sentence",
|
| 1437 |
+
"part": "",
|
| 1438 |
+
"division": "",
|
| 1439 |
+
"heading": "Related Provisions",
|
| 1440 |
+
"text": "79 If an offender is convicted of an offence under this Act, the court may suspend the passing of sentence and may make an order that the offender comply with any condition that has any or all of the effects described in section 80.",
|
| 1441 |
+
"history": "",
|
| 1442 |
+
"last_amended": "2006-12-12",
|
| 1443 |
+
"current_to": "2024-04-01",
|
| 1444 |
+
"citation": "Quarantine Act, s. 79",
|
| 1445 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-79.html"
|
| 1446 |
+
},
|
| 1447 |
+
{
|
| 1448 |
+
"id": "Q-1.1-s80",
|
| 1449 |
+
"act_code": "Q-1.1",
|
| 1450 |
+
"act_short": "Quarantine Act",
|
| 1451 |
+
"act_name": "Quarantine Act",
|
| 1452 |
+
"section": "80",
|
| 1453 |
+
"marginal_note": "Orders of court",
|
| 1454 |
+
"part": "",
|
| 1455 |
+
"division": "",
|
| 1456 |
+
"heading": "Related Provisions",
|
| 1457 |
+
"text": "80\n(1) If an offender is convicted of an offence under this Act, the court may, having regard to the nature of the offence and the circumstances surrounding its commission, in addition to any other punishment that may be imposed under this Act, make an order that has any or all of the following effects:\n(a) prohibiting the offender from committing an act or engaging in an activity that may, in the opinion of the court, result in the continuation or repetition of the offence;\n(b) directing the offender to take any measures that the court considers appropriate to avoid harm to public health that results from or may result from the act or omission that constituted the offence, or to remedy that harm;\n(c) directing the offender to publish, in any manner that the court directs, at the offender’s own expense, the facts relating to the offence and an apology for any harm caused by the offence;\n(d) directing the offender, at the offender’s own expense, to notify any person who is aggrieved or affected by the offender’s conduct of the facts relating to the conviction;\n(e) directing the offender to post a bond or pay an amount of money into court that the court considers appropriate to ensure compliance with any condition required under this section;\n(f) directing the offender to submit to the Minister, on application by the Attorney General of Canada made within three years after the conviction, any information with respect to the offender’s activities that the court considers appropriate in the circumstances;\n(g) directing the offender to compensate the Minister, in whole or in part, for the cost of any remedial or preventive measure taken by the Minister as a result of the act or omission that constituted the offence;\n(h) directing the offender to perform community service, subject to any reasonable conditions that may be imposed by the court;\n(i) directing the offender to pay an amount that the court considers appropriate for the purpose of conducting research; and\n(j) requiring the offender to comply with any other conditions that the court considers appropriate in the circumstances for securing the offender’s good conduct and for preventing the offender from repeating the same offence or committing another offence under this Act.\n(2) [Coming into force and duration of order] An order made under section 79 or subsection (1) comes into force on the day on which the order is made or on any other day that the court determines but may not continue in force for more than three years after that day.\n(3) [Publication] If an offender does not comply with an order requiring the publication of facts relating to the offence, the Minister may publish the facts and recover the costs of publication from the offender.\n(4) [Debt due to Her Majesty] If the court orders the offender to compensate the Minister or if the Minister incurs publication costs under paragraph (1)(g) or subsection (3), the costs incurred by the Minister constitute a debt due to Her Majesty in right of Canada and may be recovered in a court of competent jurisdiction.",
|
| 1458 |
+
"history": "",
|
| 1459 |
+
"last_amended": "2006-12-12",
|
| 1460 |
+
"current_to": "2024-04-01",
|
| 1461 |
+
"citation": "Quarantine Act, s. 80",
|
| 1462 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-80.html"
|
| 1463 |
+
},
|
| 1464 |
+
{
|
| 1465 |
+
"id": "Q-1.1-s81",
|
| 1466 |
+
"act_code": "Q-1.1",
|
| 1467 |
+
"act_short": "Quarantine Act",
|
| 1468 |
+
"act_name": "Quarantine Act",
|
| 1469 |
+
"section": "81",
|
| 1470 |
+
"marginal_note": "",
|
| 1471 |
+
"part": "",
|
| 1472 |
+
"division": "",
|
| 1473 |
+
"heading": "Immigration and Refugee Protection Act",
|
| 1474 |
+
"text": "81 [Amendment]",
|
| 1475 |
+
"history": "",
|
| 1476 |
+
"last_amended": "2006-12-12",
|
| 1477 |
+
"current_to": "2024-04-01",
|
| 1478 |
+
"citation": "Quarantine Act, s. 81",
|
| 1479 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-81.html"
|
| 1480 |
+
},
|
| 1481 |
+
{
|
| 1482 |
+
"id": "Q-1.1-s82",
|
| 1483 |
+
"act_code": "Q-1.1",
|
| 1484 |
+
"act_short": "Quarantine Act",
|
| 1485 |
+
"act_name": "Quarantine Act",
|
| 1486 |
+
"section": "82",
|
| 1487 |
+
"marginal_note": "",
|
| 1488 |
+
"part": "",
|
| 1489 |
+
"division": "",
|
| 1490 |
+
"heading": "Repeal",
|
| 1491 |
+
"text": "82 [Repeal]",
|
| 1492 |
+
"history": "",
|
| 1493 |
+
"last_amended": "2006-12-12",
|
| 1494 |
+
"current_to": "2024-04-01",
|
| 1495 |
+
"citation": "Quarantine Act, s. 82",
|
| 1496 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-82.html"
|
| 1497 |
+
},
|
| 1498 |
+
{
|
| 1499 |
+
"id": "Q-1.1-s83",
|
| 1500 |
+
"act_code": "Q-1.1",
|
| 1501 |
+
"act_short": "Quarantine Act",
|
| 1502 |
+
"act_name": "Quarantine Act",
|
| 1503 |
+
"section": "83",
|
| 1504 |
+
"marginal_note": "",
|
| 1505 |
+
"part": "",
|
| 1506 |
+
"division": "",
|
| 1507 |
+
"heading": "Coordinating Amendment",
|
| 1508 |
+
"text": "83 [Amendment]",
|
| 1509 |
+
"history": "",
|
| 1510 |
+
"last_amended": "2005-05-13",
|
| 1511 |
+
"current_to": "2024-04-01",
|
| 1512 |
+
"citation": "Quarantine Act, s. 83",
|
| 1513 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-83.html"
|
| 1514 |
+
},
|
| 1515 |
+
{
|
| 1516 |
+
"id": "Q-1.1-s*84",
|
| 1517 |
+
"act_code": "Q-1.1",
|
| 1518 |
+
"act_short": "Quarantine Act",
|
| 1519 |
+
"act_name": "Quarantine Act",
|
| 1520 |
+
"section": "*84",
|
| 1521 |
+
"marginal_note": "Order in council",
|
| 1522 |
+
"part": "",
|
| 1523 |
+
"division": "",
|
| 1524 |
+
"heading": "Coming into Force",
|
| 1525 |
+
"text": "*84 The provisions of this Act, other than section 83, come into force on a day or days to be fixed by order of the Governor in Council.\n* [Note: Act, other than section 34, and other than section 83 in force on assent May 13, 2005, in force December 12, 2006, see SI/2006-143; section 34 in force June 22, 2007, see 2007, c. 27, s. 5.]",
|
| 1526 |
+
"history": "",
|
| 1527 |
+
"last_amended": "2007-06-22",
|
| 1528 |
+
"current_to": "2024-04-01",
|
| 1529 |
+
"citation": "Quarantine Act, s. *84",
|
| 1530 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-*84.html"
|
| 1531 |
+
}
|
| 1532 |
+
]
|
data/processed/S-6.9.json
ADDED
|
@@ -0,0 +1,206 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"id": "S-6.9-s1",
|
| 4 |
+
"act_code": "S-6.9",
|
| 5 |
+
"act_short": "SCIDA",
|
| 6 |
+
"act_name": "Security of Canada Information Disclosure Act",
|
| 7 |
+
"section": "1",
|
| 8 |
+
"marginal_note": "Short title",
|
| 9 |
+
"part": "",
|
| 10 |
+
"division": "",
|
| 11 |
+
"heading": "Short Title",
|
| 12 |
+
"text": "1 This Act may be cited as the Security of Canada Information Disclosure Act.",
|
| 13 |
+
"history": "2015, c. 20, s. 2 “1”; 2019, c. 13, s. 114(E)",
|
| 14 |
+
"last_amended": "2019-06-21",
|
| 15 |
+
"current_to": "2023-12-15",
|
| 16 |
+
"citation": "SCIDA, s. 1",
|
| 17 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/s-6.9/section-1.html"
|
| 18 |
+
},
|
| 19 |
+
{
|
| 20 |
+
"id": "S-6.9-s2",
|
| 21 |
+
"act_code": "S-6.9",
|
| 22 |
+
"act_short": "SCIDA",
|
| 23 |
+
"act_name": "Security of Canada Information Disclosure Act",
|
| 24 |
+
"section": "2",
|
| 25 |
+
"marginal_note": "Definitions",
|
| 26 |
+
"part": "",
|
| 27 |
+
"division": "",
|
| 28 |
+
"heading": "Interpretation",
|
| 29 |
+
"text": "2\n(1) The following definitions apply in this Act.\nactivity that undermines the security of Canada means any activity that undermines the sovereignty, security or territorial integrity of Canada or threatens the lives or the security of people in Canada or of any individual who has a connection to Canada and who is outside Canada. For greater certainty, it includes\n(a) interference with the capability of the Government of Canada in relation to intelligence, defence, border operations or public safety;\n(b) changing or unduly influencing a government in Canada by force or unlawful means;\n(c) espionage, sabotage or covert foreign-influenced activities;\n(d) terrorism;\n(e) proliferation of nuclear, chemical, radiological or biological weapons;\n(f) significant or widespread interference with critical infrastructure;\n(g) significant or widespread interference with the global information infrastructure, as defined in section 2 of the Communications Security Establishment Act; and\n(h) conduct that takes place in Canada and that undermines the security of another state. (activité portant atteinte à la sécurité du Canada)\n(i) [Repealed, 2019, c. 13, s. 115]\nGovernment of Canada institution means\n(a) a government institution — as defined in section 3 of the Privacy Act — other than one that is listed in Schedule 1; or\n(b) an institution that is listed in Schedule 2. (institution fédérale)\npeople of Canada[Repealed, 2019, c. 13, s. 115]\n(2) [Exception] For the purposes of this Act, advocacy, protest, dissent or artistic expression is not an activity that undermines the security of Canada unless carried on in conjunction with an activity that undermines the security of Canada.",
|
| 30 |
+
"history": "2015, c. 20, s. 2 “2”; 2019, c. 13, s. 89; 2019, c. 13, s. 115",
|
| 31 |
+
"last_amended": "2019-08-01",
|
| 32 |
+
"current_to": "2023-12-15",
|
| 33 |
+
"citation": "SCIDA, s. 2",
|
| 34 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/s-6.9/section-2.html"
|
| 35 |
+
},
|
| 36 |
+
{
|
| 37 |
+
"id": "S-6.9-s3",
|
| 38 |
+
"act_code": "S-6.9",
|
| 39 |
+
"act_short": "SCIDA",
|
| 40 |
+
"act_name": "Security of Canada Information Disclosure Act",
|
| 41 |
+
"section": "3",
|
| 42 |
+
"marginal_note": "Purpose",
|
| 43 |
+
"part": "",
|
| 44 |
+
"division": "",
|
| 45 |
+
"heading": "Purpose and Principles",
|
| 46 |
+
"text": "3 The purpose of this Act is to encourage and facilitate the disclosure of information between Government of Canada institutions in order to protect Canada against activities that undermine the security of Canada.",
|
| 47 |
+
"history": "2015, c. 20, s. 2 “3”; 2019, c. 13, s. 116(E)",
|
| 48 |
+
"last_amended": "2019-06-21",
|
| 49 |
+
"current_to": "2023-12-15",
|
| 50 |
+
"citation": "SCIDA, s. 3",
|
| 51 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/s-6.9/section-3.html"
|
| 52 |
+
},
|
| 53 |
+
{
|
| 54 |
+
"id": "S-6.9-s4",
|
| 55 |
+
"act_code": "S-6.9",
|
| 56 |
+
"act_short": "SCIDA",
|
| 57 |
+
"act_name": "Security of Canada Information Disclosure Act",
|
| 58 |
+
"section": "4",
|
| 59 |
+
"marginal_note": "Guiding principles",
|
| 60 |
+
"part": "",
|
| 61 |
+
"division": "",
|
| 62 |
+
"heading": "Purpose and Principles",
|
| 63 |
+
"text": "4 The disclosure of information under this Act is to be guided by the following principles:\n(a) effective and responsible disclosure of information protects Canada and Canadians;\n(b) respect for caveats on and originator control over disclosed information is consistent with effective and responsible disclosure of information;\n(c) entry into an information-sharing arrangement is appropriate when a Government of Canada institution regularly discloses information to the same Government of Canada institution;\n(d) the provision of feedback as to how disclosed information is used and as to whether it is useful in protecting against activities that undermine the security of Canada facilitates effective and responsible information disclosure; and\n(e) only those within an institution who exercise its jurisdiction or carry out its responsibilities in respect of activities that undermine the security of Canada ought to receive information that is disclosed under this Act.",
|
| 64 |
+
"history": "2015, c. 20, s. 2 “4”; 2019, c. 13, s. 117",
|
| 65 |
+
"last_amended": "2019-06-21",
|
| 66 |
+
"current_to": "2023-12-15",
|
| 67 |
+
"citation": "SCIDA, s. 4",
|
| 68 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/s-6.9/section-4.html"
|
| 69 |
+
},
|
| 70 |
+
{
|
| 71 |
+
"id": "S-6.9-s5",
|
| 72 |
+
"act_code": "S-6.9",
|
| 73 |
+
"act_short": "SCIDA",
|
| 74 |
+
"act_name": "Security of Canada Information Disclosure Act",
|
| 75 |
+
"section": "5",
|
| 76 |
+
"marginal_note": "Disclosure of information to institution listed in Schedule 3",
|
| 77 |
+
"part": "",
|
| 78 |
+
"division": "",
|
| 79 |
+
"heading": "Disclosure of Information",
|
| 80 |
+
"text": "5\n(1) Subject to any provision of any other Act of Parliament, or of any regulation made under such an Act, that prohibits or restricts the disclosure of information, a Government of Canada institution may, on its own initiative or on request, disclose information to the head of a recipient Government of Canada institution whose title is listed in Schedule 3, or to a person designated by the head of that recipient institution, if the disclosing institution is satisfied that\n(a) the disclosure will contribute to the exercise of the recipient institution’s jurisdiction, or the carrying out of its responsibilities, under an Act of Parliament or another lawful authority, in respect of activities that undermine the security of Canada; and\n(b) the disclosure will not affect any person’s privacy interest more than is reasonably necessary in the circumstances.\n(2) [Statement regarding accuracy and reliability] An institution that discloses information under subsection (1) must, at the time of the disclosure, also provide information regarding its accuracy and the reliability of the manner in which it was obtained.",
|
| 81 |
+
"history": "2015, c. 20, s. 2 “5”; 2019, c. 13, s. 118",
|
| 82 |
+
"last_amended": "2019-06-21",
|
| 83 |
+
"current_to": "2023-12-15",
|
| 84 |
+
"citation": "SCIDA, s. 5",
|
| 85 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/s-6.9/section-5.html"
|
| 86 |
+
},
|
| 87 |
+
{
|
| 88 |
+
"id": "S-6.9-s5.1",
|
| 89 |
+
"act_code": "S-6.9",
|
| 90 |
+
"act_short": "SCIDA",
|
| 91 |
+
"act_name": "Security of Canada Information Disclosure Act",
|
| 92 |
+
"section": "5.1",
|
| 93 |
+
"marginal_note": "Requirement to destroy or return",
|
| 94 |
+
"part": "",
|
| 95 |
+
"division": "",
|
| 96 |
+
"heading": "Disclosure of Information",
|
| 97 |
+
"text": "5.1\n(1) A Government of Canada institution must, as soon as feasible after receiving it under section 5, destroy or return any personal information, as defined in section 3 of the Privacy Act, that is not necessary for the institution to exercise its jurisdiction, or to carry out its responsibilities, under an Act of Parliament or another lawful authority, in respect of activities that undermine the security of Canada.\n(2) [Exception] Subsection (1) does not apply if the retention of the information is required by law.\n(3) [Canadian Security Intelligence Service Act] Subsection (1) does not apply to the Canadian Security Intelligence Service in respect of any information that relates to the performance of its duties and functions under section 12 of the Canadian Security Intelligence Service Act.",
|
| 98 |
+
"history": "2019, c. 13, s. 118",
|
| 99 |
+
"last_amended": "2019-06-21",
|
| 100 |
+
"current_to": "2023-12-15",
|
| 101 |
+
"citation": "SCIDA, s. 5.1",
|
| 102 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/s-6.9/section-5.1.html"
|
| 103 |
+
},
|
| 104 |
+
{
|
| 105 |
+
"id": "S-6.9-s6",
|
| 106 |
+
"act_code": "S-6.9",
|
| 107 |
+
"act_short": "SCIDA",
|
| 108 |
+
"act_name": "Security of Canada Information Disclosure Act",
|
| 109 |
+
"section": "6",
|
| 110 |
+
"marginal_note": "Clarification",
|
| 111 |
+
"part": "",
|
| 112 |
+
"division": "",
|
| 113 |
+
"heading": "Disclosure of Information",
|
| 114 |
+
"text": "6 Nothing in section 5 or 5.1 is to be construed as authorizing the collection or use of any information that is disclosed under section 5.",
|
| 115 |
+
"history": "2015, c. 20, s. 2 “6”; 2019, c. 13, s. 118",
|
| 116 |
+
"last_amended": "2019-06-21",
|
| 117 |
+
"current_to": "2023-12-15",
|
| 118 |
+
"citation": "SCIDA, s. 6",
|
| 119 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/s-6.9/section-6.html"
|
| 120 |
+
},
|
| 121 |
+
{
|
| 122 |
+
"id": "S-6.9-s7",
|
| 123 |
+
"act_code": "S-6.9",
|
| 124 |
+
"act_short": "SCIDA",
|
| 125 |
+
"act_name": "Security of Canada Information Disclosure Act",
|
| 126 |
+
"section": "7",
|
| 127 |
+
"marginal_note": "No presumption",
|
| 128 |
+
"part": "",
|
| 129 |
+
"division": "",
|
| 130 |
+
"heading": "Disclosure of Information",
|
| 131 |
+
"text": "7 The act of disclosing information under this Act does not create a presumption\n(a) that the disclosing institution is conducting a joint investigation or decision-making process with the recipient institution and therefore has the same obligations, if any, as the recipient institution to disclose or produce information for the purposes of a proceeding; or\n(b) that there has been a waiver of any privilege, or of any requirement to obtain consent, for the purposes of any other disclosure of that information either in a proceeding or to an institution that is not a Government of Canada institution.",
|
| 132 |
+
"history": "",
|
| 133 |
+
"last_amended": "2015-08-01",
|
| 134 |
+
"current_to": "2023-12-15",
|
| 135 |
+
"citation": "SCIDA, s. 7",
|
| 136 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/s-6.9/section-7.html"
|
| 137 |
+
},
|
| 138 |
+
{
|
| 139 |
+
"id": "S-6.9-s7.1",
|
| 140 |
+
"act_code": "S-6.9",
|
| 141 |
+
"act_short": "SCIDA",
|
| 142 |
+
"act_name": "Security of Canada Information Disclosure Act",
|
| 143 |
+
"section": "7.1",
|
| 144 |
+
"marginal_note": "Clarification",
|
| 145 |
+
"part": "",
|
| 146 |
+
"division": "",
|
| 147 |
+
"heading": "Disclosure of Information",
|
| 148 |
+
"text": "7.1 For greater certainty, for the purpose of paragraph 8(2)(b) of the Privacy Act, the authority in this Act to disclose information includes the authority to disclose personal information, as defined in section 3 of the Privacy Act.",
|
| 149 |
+
"history": "2019, c. 13, s. 118.1",
|
| 150 |
+
"last_amended": "2019-06-21",
|
| 151 |
+
"current_to": "2023-12-15",
|
| 152 |
+
"citation": "SCIDA, s. 7.1",
|
| 153 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/s-6.9/section-7.1.html"
|
| 154 |
+
},
|
| 155 |
+
{
|
| 156 |
+
"id": "S-6.9-s8",
|
| 157 |
+
"act_code": "S-6.9",
|
| 158 |
+
"act_short": "SCIDA",
|
| 159 |
+
"act_name": "Security of Canada Information Disclosure Act",
|
| 160 |
+
"section": "8",
|
| 161 |
+
"marginal_note": "Non-derogation",
|
| 162 |
+
"part": "",
|
| 163 |
+
"division": "",
|
| 164 |
+
"heading": "Disclosure of Information",
|
| 165 |
+
"text": "8 Nothing in this Act limits or affects any authority to disclose information under another Act of Parliament or a provincial Act, at common law or under the royal prerogative.",
|
| 166 |
+
"history": "",
|
| 167 |
+
"last_amended": "2015-08-01",
|
| 168 |
+
"current_to": "2023-12-15",
|
| 169 |
+
"citation": "SCIDA, s. 8",
|
| 170 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/s-6.9/section-8.html"
|
| 171 |
+
},
|
| 172 |
+
{
|
| 173 |
+
"id": "S-6.9-s9",
|
| 174 |
+
"act_code": "S-6.9",
|
| 175 |
+
"act_short": "SCIDA",
|
| 176 |
+
"act_name": "Security of Canada Information Disclosure Act",
|
| 177 |
+
"section": "9",
|
| 178 |
+
"marginal_note": "Obligation — disclosing institution",
|
| 179 |
+
"part": "",
|
| 180 |
+
"division": "",
|
| 181 |
+
"heading": "Record Keeping",
|
| 182 |
+
"text": "9\n(1) Every Government of Canada institution that discloses information under this Act must prepare and keep records that set out\n(a) a description of the information;\n(b) the name of the individual who authorized its disclosure;\n(c) the name of the recipient Government of Canada institution;\n(d) the date on which it was disclosed;\n(e) a description of the information that was relied on to satisfy the disclosing institution that the disclosure was authorized under this Act; and\n(f) any other information specified by the regulations.\n(2) [Obligation — recipient institution] Every Government of Canada institution that receives information under this Act must prepare and keep records that set out\n(a) a description of the information;\n(b) the name of the institution that disclosed it;\n(c) the name or position of the head of the recipient institution — or of the person designated by the head — who received the information;\n(d) the date on which it was received by the recipient institution;\n(e) whether the information has been destroyed or returned under subsection 5.1(1);\n(f) if the information has been destroyed under subsection 5.1(1), the date on which it was destroyed;\n(g) if the information was returned under subsection 5.1(1) to the institution that disclosed it, the date on which it was returned; and\n(h) any other information specified by the regulations.\n(3) [Copy to National Security and Intelligence Review Agency] Within 30 days after the end of each calendar year, every Government of Canada institution that disclosed information under section 5 during the year and every Government of Canada institution that received such information must provide the National Security and Intelligence Review Agency with a copy of every record it prepared under subsection (1) or (2), as the case may be, with respect to the information.",
|
| 183 |
+
"history": "2015, c. 20, s. 2 “9”; 2019, c. 13, s. 119",
|
| 184 |
+
"last_amended": "2019-07-12",
|
| 185 |
+
"current_to": "2023-12-15",
|
| 186 |
+
"citation": "SCIDA, s. 9",
|
| 187 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/s-6.9/section-9.html"
|
| 188 |
+
},
|
| 189 |
+
{
|
| 190 |
+
"id": "S-6.9-s10",
|
| 191 |
+
"act_code": "S-6.9",
|
| 192 |
+
"act_short": "SCIDA",
|
| 193 |
+
"act_name": "Security of Canada Information Disclosure Act",
|
| 194 |
+
"section": "10",
|
| 195 |
+
"marginal_note": "Regulations",
|
| 196 |
+
"part": "",
|
| 197 |
+
"division": "",
|
| 198 |
+
"heading": "Powers of Governor in Council",
|
| 199 |
+
"text": "10\n(1) The Governor in Council may, on the recommendation of the Minister of Public Safety and Emergency Preparedness, make regulations for carrying out the purposes and provisions of this Act, including regulations\n(a) respecting the manner of disclosure under section 5;\n(b) specifying information for the purposes of paragraph 9(1)(f) or (2)(f); and\n(c) respecting the manner in which records that are required by subsection 9(1) or (2) are to be prepared and kept and specifying the period during which they are to be kept.\n(2) [Amendments to Schedules 1 and 2] The Governor in Council may make an order adding the name of an institution to Schedule 1 or 2 or deleting one from either of those Schedules.\n(3) [Amendments to Schedule 3] The Governor in Council may make an order adding the name of a Government of Canada institution and the title of its head to Schedule 3, deleting the name of an institution and the title of its head from that Schedule or amending the name of an institution or the title of a head that is listed in that Schedule. An addition is authorized only if the institution has jurisdiction or responsibilities under an Act of Parliament or another lawful authority in respect of activities that undermine the security of Canada.",
|
| 200 |
+
"history": "2015, c. 20, s. 2 “10”; 2019, c. 13, s. 120",
|
| 201 |
+
"last_amended": "2019-07-12",
|
| 202 |
+
"current_to": "2023-12-15",
|
| 203 |
+
"citation": "SCIDA, s. 10",
|
| 204 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/s-6.9/section-10.html"
|
| 205 |
+
}
|
| 206 |
+
]
|
data/processed/S-8.35.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/processed/SOR-2000-217.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/processed/SOR-2002-227.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/processed/SOR-2002-359.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/processed/SOR-2002-412.json
ADDED
|
@@ -0,0 +1,376 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"id": "SOR-2002-412-s1",
|
| 4 |
+
"act_code": "SOR-2002-412",
|
| 5 |
+
"act_short": "Cross-border Currency Reporting Regs",
|
| 6 |
+
"act_name": "Cross-border Currency and Monetary Instruments Reporting Regulations",
|
| 7 |
+
"section": "1",
|
| 8 |
+
"marginal_note": "",
|
| 9 |
+
"part": "",
|
| 10 |
+
"division": "",
|
| 11 |
+
"heading": "Interpretation",
|
| 12 |
+
"text": "1\n(1) The following definitions apply in the Act and these Regulations.\ncourier means a commercial carrier that is engaged in scheduled international transportation of shipments of goods other than goods imported or exported as mail. (messager)\nmonetary instruments means the following instruments in bearer form or in such other form as title to them passes on delivery, namely,\n(a) securities, including stocks, bonds, debentures and treasury bills; and\n(b) negotiable instruments, including bank drafts, cheques, promissory notes, travellers’ cheques and money orders, other than warehouse receipts or bills of lading.\nFor greater certainty, this definition does not apply to securities or negotiable instruments that bear restrictive endorsements or a stamp for the purposes of clearing. (effets)\n(2) The following definitions apply in these Regulations.\nAct means the Proceeds of Crime (Money Laundering) and Terrorist Financing Act. (Loi)\ncargo ship means a commercial vessel that is engaged in international transportation of shipments of goods other than goods imported or exported as mail. (navire de charge)\ncommercial passenger conveyance means a conveyance that is used to carry passengers who have paid for passage. (moyen de transport commercial de passagers)\nconveyance means any vehicle, aircraft or water-borne craft, or other contrivance that is used to move persons, goods, currency or monetary instruments. (moyen de transport)\ncruise ship means a commercial vessel that has sleeping facilities for over 70 persons who are not crew members but does not include a vessel engaged in passenger or cargo ferry service. (navire de croisière)\ncurrency means coins referred to in section 7 of the Currency Act, notes issued by the Bank of Canada under the Bank of Canada Act that are intended for circulation in Canada or coins or bank notes of countries other than Canada. (espèces)\nemergency means a medical emergency, fire, flood or other disaster that threatens life, property or the environment. (urgence)\nnon-commercial passenger conveyance means a conveyance that does not have aboard any person who has paid for passage and includes corporate aircraft, private aircraft and marine pleasure craft. (moyen de transport non commercial de passagers)\ntransfer agent means a person or entity appointed by a corporation to maintain records of stock, debenture and bond owners, to cancel and issue certificates and to send out dividend cheques. (agent de transfert)",
|
| 13 |
+
"history": "SOR/2003-358, s. 25; SOR/2019-240, s. 50; 2024, c. 17, s. 348",
|
| 14 |
+
"last_amended": "2024-07-01",
|
| 15 |
+
"current_to": "2024-07-23",
|
| 16 |
+
"citation": "Cross-border Currency Reporting Regs, s. 1",
|
| 17 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2002-412/section-1.html"
|
| 18 |
+
},
|
| 19 |
+
{
|
| 20 |
+
"id": "SOR-2002-412-s2",
|
| 21 |
+
"act_code": "SOR-2002-412",
|
| 22 |
+
"act_short": "Cross-border Currency Reporting Regs",
|
| 23 |
+
"act_name": "Cross-border Currency and Monetary Instruments Reporting Regulations",
|
| 24 |
+
"section": "2",
|
| 25 |
+
"marginal_note": "",
|
| 26 |
+
"part": "",
|
| 27 |
+
"division": "",
|
| 28 |
+
"heading": "Minimum Value of Currency or Monetary Instruments",
|
| 29 |
+
"text": "2\n(1) For the purposes of subsection 12(1) of the Act, the prescribed amount is $10,000.\n(2) The amount is in Canadian dollars, or in its equivalent in a foreign currency using\n(a) the exchange rate that is published by the Bank of Canada for that foreign currency and that is in effect at the time of the importation or exportation; or\n(b) if no exchange rate is published by the Bank of Canada for that foreign currency, the exchange rate that the person or entity would use in the ordinary course of business at the time of the importation or exportation.",
|
| 30 |
+
"history": "SOR/2019-240, s. 51",
|
| 31 |
+
"last_amended": "2020-06-01",
|
| 32 |
+
"current_to": "2024-07-23",
|
| 33 |
+
"citation": "Cross-border Currency Reporting Regs, s. 2",
|
| 34 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2002-412/section-2.html"
|
| 35 |
+
},
|
| 36 |
+
{
|
| 37 |
+
"id": "SOR-2002-412-s3",
|
| 38 |
+
"act_code": "SOR-2002-412",
|
| 39 |
+
"act_short": "Cross-border Currency Reporting Regs",
|
| 40 |
+
"act_name": "Cross-border Currency and Monetary Instruments Reporting Regulations",
|
| 41 |
+
"section": "3",
|
| 42 |
+
"marginal_note": "",
|
| 43 |
+
"part": "",
|
| 44 |
+
"division": "",
|
| 45 |
+
"heading": "Manner of Reporting",
|
| 46 |
+
"text": "3 Subject to subsections 4(3) and (3.1) and section 8, a report with respect to the importation or exportation of currency or monetary instruments shall\n(a) be made in writing;\n(b) contain the information referred to\n(i) in Schedule 1, in the case of a report made by the person described in paragraph 12(3)(a) of the Act, if that person is not transporting on behalf of an entity or other person,\n(ii) in Schedule 2, in the case of a report made by the person described in paragraph 12(3)(a) of the Act, if that person is transporting on behalf of an entity or other person,\n(iii) in Schedule 2, in the case of a report made by the person or entity described in paragraph 12(3)(b), (c) or (e) of the Act, and\n(iv) in Schedule 3, in the case of a report made by the person described in paragraph 12(3)(d) of the Act;\n(c) contain a declaration that the statements made in the report are true, accurate and complete; and\n(d) be signed and dated by the person or entity described in paragraph 12(3)(a), (b), (c), (d) or (e) of the Act, as applicable.",
|
| 47 |
+
"history": "SOR/2002-412, s. 19; SOR/2019-240, s. 53",
|
| 48 |
+
"last_amended": "2020-06-01",
|
| 49 |
+
"current_to": "2024-07-23",
|
| 50 |
+
"citation": "Cross-border Currency Reporting Regs, s. 3",
|
| 51 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2002-412/section-3.html"
|
| 52 |
+
},
|
| 53 |
+
{
|
| 54 |
+
"id": "SOR-2002-412-s3.1",
|
| 55 |
+
"act_code": "SOR-2002-412",
|
| 56 |
+
"act_short": "Cross-border Currency Reporting Regs",
|
| 57 |
+
"act_name": "Cross-border Currency and Monetary Instruments Reporting Regulations",
|
| 58 |
+
"section": "3.1",
|
| 59 |
+
"marginal_note": "",
|
| 60 |
+
"part": "",
|
| 61 |
+
"division": "",
|
| 62 |
+
"heading": "Manner of Reporting",
|
| 63 |
+
"text": "3.1 For greater certainty, although items in Schedules 1 to 3 are described in the singular, a person or entity shall report all known information that falls within an item.",
|
| 64 |
+
"history": "SOR/2019-240, s. 54",
|
| 65 |
+
"last_amended": "2020-06-01",
|
| 66 |
+
"current_to": "2024-07-23",
|
| 67 |
+
"citation": "Cross-border Currency Reporting Regs, s. 3.1",
|
| 68 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2002-412/section-3.1.html"
|
| 69 |
+
},
|
| 70 |
+
{
|
| 71 |
+
"id": "SOR-2002-412-s4",
|
| 72 |
+
"act_code": "SOR-2002-412",
|
| 73 |
+
"act_short": "Cross-border Currency Reporting Regs",
|
| 74 |
+
"act_name": "Cross-border Currency and Monetary Instruments Reporting Regulations",
|
| 75 |
+
"section": "4",
|
| 76 |
+
"marginal_note": "",
|
| 77 |
+
"part": "",
|
| 78 |
+
"division": "",
|
| 79 |
+
"heading": "Importation Reporting",
|
| 80 |
+
"text": "4\n(1) Subject to subsections (2) to (5) and section 9, a report with respect to currency or monetary instruments transported by a person arriving in Canada shall be submitted without delay by the person at the customs office located at the place of importation or, if it is not open for business at the time of importation, at the nearest customs office that is open for business at that time.\n(2) A report with respect to currency or monetary instruments transported by a person arriving in Canada on board a commercial passenger conveyance who has as their destination another place in Canada at which there is a customs office may be submitted without delay by the person at that customs office or, if it is not open for business at the time of importation, at the nearest customs office that is open for business at that time, on condition that\n(a) the person does not disembark from the conveyance at the place of arrival in Canada and the currency or monetary instruments are not removed from the conveyance at that place, other than to be transferred under customs control directly to a commercial passenger conveyance for departure to the other place in Canada or directly to a holding area designated as such for the purposes of the Presentation of Persons (Customs) Regulations; and\n(b) if the person and currency or monetary instruments are transferred under customs control directly to a designated holding area, the person does not leave and the currency or monetary instruments are not removed from that area, other than to board or to be loaded on board a commercial passenger conveyance for departure to the other place in Canada.\n(3) A report with respect to currency or monetary instruments transported by a person arriving in Canada on board a non-commercial passenger conveyance at a customs office where, under the Customs Act, customs reporting may be done by radio or telephone may be submitted by radio or telephone to an officer by that person or the person in charge of the conveyance at that location, on condition that\n(a) when the person informs the officer of their arrival for the purposes of section 11 of the Customs Act, they provide the information referred to in Schedule 1, 2 or 3, as applicable; and\n(b) on the officer’s request, they present themselves and make available for examination the currency or monetary instruments at the time and place specified by the officer.\n(3.1) A report with respect to currency or monetary instruments transported by a person arriving in Canada on board a non-commercial passenger conveyance, at a customs office where the person is authorized in accordance with the Presentation of Persons (2003) Regulations to present in an alternative manner, may be submitted to an officer by telephone, by that person or the person in charge of the conveyance before arriving in Canada, on condition that\n(a) when the person informs the officer of their arrival for the purposes of section 11 of the Customs Act, they provide the information referred to in Schedule 1, 2 or 3, as applicable; and\n(b) on the officer’s request, they present themselves and make available for examination the currency or monetary instruments on arrival in Canada at the time and place specified by the officer.\n(4) A report with respect to currency or monetary instruments transported by a freight train crew member arriving in Canada on board the freight train shall be submitted without delay by the crew member at the customs office specified by the officer when the crew member presents himself or herself in accordance with section 11 of the Customs Act.\n(5) A report with respect to currency or monetary instruments that are transported by courier into Canada on board an aircraft and that have as their destination another place in Canada at which there is a customs office, shall be submitted at the customs office located at the airport of destination shown on the air waybill, on condition that\n(a) the currency or monetary instruments are not removed from the aircraft at the place of arrival, other than to be transferred under customs control directly to a holding area designated as such for the purposes of the Presentation of Persons (Customs) Regulations; and\n(b) if the currency or monetary instruments are transferred under customs control directly to a designated holding area, they are not removed from that area, other than to be loaded on board an aircraft for departure to the other place in Canada.",
|
| 81 |
+
"history": "SOR/2002-412, s. 20",
|
| 82 |
+
"last_amended": "2006-03-22",
|
| 83 |
+
"current_to": "2024-07-23",
|
| 84 |
+
"citation": "Cross-border Currency Reporting Regs, s. 4",
|
| 85 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2002-412/section-4.html"
|
| 86 |
+
},
|
| 87 |
+
{
|
| 88 |
+
"id": "SOR-2002-412-s5",
|
| 89 |
+
"act_code": "SOR-2002-412",
|
| 90 |
+
"act_short": "Cross-border Currency Reporting Regs",
|
| 91 |
+
"act_name": "Cross-border Currency and Monetary Instruments Reporting Regulations",
|
| 92 |
+
"section": "5",
|
| 93 |
+
"marginal_note": "",
|
| 94 |
+
"part": "",
|
| 95 |
+
"division": "",
|
| 96 |
+
"heading": "Importation Reporting",
|
| 97 |
+
"text": "5 Subject to section 10, a report made by an exporter with respect to the importation of currency or monetary instruments by mail shall be made by\n(a) including inside the mail item an importation report with respect to the currency or monetary instruments; and\n(b) affixing the customs declaration form required by the Universal Postal Convention, as amended from time to time, to the outside of the mail item and indicating that it contains currency or monetary instruments.",
|
| 98 |
+
"history": "",
|
| 99 |
+
"last_amended": "2006-03-22",
|
| 100 |
+
"current_to": "2024-07-23",
|
| 101 |
+
"citation": "Cross-border Currency Reporting Regs, s. 5",
|
| 102 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2002-412/section-5.html"
|
| 103 |
+
},
|
| 104 |
+
{
|
| 105 |
+
"id": "SOR-2002-412-s6",
|
| 106 |
+
"act_code": "SOR-2002-412",
|
| 107 |
+
"act_short": "Cross-border Currency Reporting Regs",
|
| 108 |
+
"act_name": "Cross-border Currency and Monetary Instruments Reporting Regulations",
|
| 109 |
+
"section": "6",
|
| 110 |
+
"marginal_note": "",
|
| 111 |
+
"part": "",
|
| 112 |
+
"division": "",
|
| 113 |
+
"heading": "Importation Reporting",
|
| 114 |
+
"text": "6 A report made with respect to the importation of currency or monetary instruments that have been retained under section 14 of the Act shall be submitted by the person or entity to whom the notice was given at the customs office indicated on the notice.",
|
| 115 |
+
"history": "",
|
| 116 |
+
"last_amended": "2006-03-22",
|
| 117 |
+
"current_to": "2024-07-23",
|
| 118 |
+
"citation": "Cross-border Currency Reporting Regs, s. 6",
|
| 119 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2002-412/section-6.html"
|
| 120 |
+
},
|
| 121 |
+
{
|
| 122 |
+
"id": "SOR-2002-412-s7",
|
| 123 |
+
"act_code": "SOR-2002-412",
|
| 124 |
+
"act_short": "Cross-border Currency Reporting Regs",
|
| 125 |
+
"act_name": "Cross-border Currency and Monetary Instruments Reporting Regulations",
|
| 126 |
+
"section": "7",
|
| 127 |
+
"marginal_note": "",
|
| 128 |
+
"part": "",
|
| 129 |
+
"division": "",
|
| 130 |
+
"heading": "Importation Reporting",
|
| 131 |
+
"text": "7 A report with respect to the importation of currency or monetary instruments, other than one referred to in sections 4 to 6, shall be submitted without delay at the customs office that is open for business at the time of the importation and that is nearest to the place of importation.",
|
| 132 |
+
"history": "",
|
| 133 |
+
"last_amended": "2006-03-22",
|
| 134 |
+
"current_to": "2024-07-23",
|
| 135 |
+
"citation": "Cross-border Currency Reporting Regs, s. 7",
|
| 136 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2002-412/section-7.html"
|
| 137 |
+
},
|
| 138 |
+
{
|
| 139 |
+
"id": "SOR-2002-412-s8",
|
| 140 |
+
"act_code": "SOR-2002-412",
|
| 141 |
+
"act_short": "Cross-border Currency Reporting Regs",
|
| 142 |
+
"act_name": "Cross-border Currency and Monetary Instruments Reporting Regulations",
|
| 143 |
+
"section": "8",
|
| 144 |
+
"marginal_note": "",
|
| 145 |
+
"part": "",
|
| 146 |
+
"division": "",
|
| 147 |
+
"heading": "Importation Reporting",
|
| 148 |
+
"text": "8 In an emergency, the person in charge of a conveyance who must unload currency or monetary instruments from the conveyance before being able to make or submit an importation report in accordance with these Regulations may submit the importation report by telephone or other expedient means and, as soon as possible after that, shall make or submit a report in accordance with these Regulations.",
|
| 149 |
+
"history": "",
|
| 150 |
+
"last_amended": "2006-03-22",
|
| 151 |
+
"current_to": "2024-07-23",
|
| 152 |
+
"citation": "Cross-border Currency Reporting Regs, s. 8",
|
| 153 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2002-412/section-8.html"
|
| 154 |
+
},
|
| 155 |
+
{
|
| 156 |
+
"id": "SOR-2002-412-s9",
|
| 157 |
+
"act_code": "SOR-2002-412",
|
| 158 |
+
"act_short": "Cross-border Currency Reporting Regs",
|
| 159 |
+
"act_name": "Cross-border Currency and Monetary Instruments Reporting Regulations",
|
| 160 |
+
"section": "9",
|
| 161 |
+
"marginal_note": "",
|
| 162 |
+
"part": "",
|
| 163 |
+
"division": "",
|
| 164 |
+
"heading": "Exceptions to Importation Reporting",
|
| 165 |
+
"text": "9\n(1) Subject to subsections (2) and (3), currency or monetary instruments transported by a person arriving in Canada on board a commercial passenger conveyance who has as their destination a place outside Canada are not required to be reported under subsection 12(1) of the Act, on condition that\n(a) the person does not disembark from the conveyance in Canada and the currency or monetary instruments are not removed from the conveyance in Canada other than to be transferred under customs control directly to a commercial passenger conveyance for departure to the place outside Canada or directly to a holding area designated as such for the purposes of the Presentation of Persons (Customs) Regulations; and\n(b) if the person and currency or monetary instruments are transferred under customs control directly to a designated holding area, the person does not leave and the currency or monetary instruments are not removed from that area other than to board or be loaded on board a commercial passenger conveyance for departure to the place outside Canada.\n(2) Subject to subsection (3), currency or monetary instruments that are transported by courier into Canada on board a conveyance and that have as their destination a place outside Canada are not required to be reported under subsection 12(1) of the Act, on condition that\n(a) the currency or monetary instruments are not removed from the conveyance at the place of arrival, other than to be transferred under customs control directly to a holding area designated as such for the purposes of the Presentation of Persons (Customs) Regulations; and\n(b) if the currency or monetary instruments are transferred under customs control directly to a designated holding area, they are not removed from that area, other than to be loaded on board a conveyance for departure to the place outside of Canada.\n(3) Currency or monetary instruments that are transported into Canada on board a cruise ship or cargo ship and that have as their destination a place outside Canada are not required to be reported under subsection 12(1) of the Act, on condition that the currency or monetary instruments are not removed from the cruise ship or cargo ship while it is in Canada.",
|
| 166 |
+
"history": "SOR/2003-358, s. 26",
|
| 167 |
+
"last_amended": "2006-03-22",
|
| 168 |
+
"current_to": "2024-07-23",
|
| 169 |
+
"citation": "Cross-border Currency Reporting Regs, s. 9",
|
| 170 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2002-412/section-9.html"
|
| 171 |
+
},
|
| 172 |
+
{
|
| 173 |
+
"id": "SOR-2002-412-s10",
|
| 174 |
+
"act_code": "SOR-2002-412",
|
| 175 |
+
"act_short": "Cross-border Currency Reporting Regs",
|
| 176 |
+
"act_name": "Cross-border Currency and Monetary Instruments Reporting Regulations",
|
| 177 |
+
"section": "10",
|
| 178 |
+
"marginal_note": "",
|
| 179 |
+
"part": "",
|
| 180 |
+
"division": "",
|
| 181 |
+
"heading": "Exceptions to Importation Reporting",
|
| 182 |
+
"text": "10 A person or entity is not required to make a report under subsection 12(1) of the Act with respect to the importation of currency or monetary instruments that are mailed from a location outside Canada to a destination outside Canada but that transit through Canada in the course of post, on condition that they will not leave the course of post until after they have left Canada.",
|
| 183 |
+
"history": "",
|
| 184 |
+
"last_amended": "2006-03-22",
|
| 185 |
+
"current_to": "2024-07-23",
|
| 186 |
+
"citation": "Cross-border Currency Reporting Regs, s. 10",
|
| 187 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2002-412/section-10.html"
|
| 188 |
+
},
|
| 189 |
+
{
|
| 190 |
+
"id": "SOR-2002-412-s11",
|
| 191 |
+
"act_code": "SOR-2002-412",
|
| 192 |
+
"act_short": "Cross-border Currency Reporting Regs",
|
| 193 |
+
"act_name": "Cross-border Currency and Monetary Instruments Reporting Regulations",
|
| 194 |
+
"section": "11",
|
| 195 |
+
"marginal_note": "",
|
| 196 |
+
"part": "",
|
| 197 |
+
"division": "",
|
| 198 |
+
"heading": "Exportation Reporting",
|
| 199 |
+
"text": "11 A report with respect to currency or monetary instruments transported by a person departing from Canada shall be submitted without delay by the person at the customs office located at the place of exportation or, if it is not open for business at the time of exportation, at the nearest customs office that is open for business at that time.",
|
| 200 |
+
"history": "",
|
| 201 |
+
"last_amended": "2006-03-22",
|
| 202 |
+
"current_to": "2024-07-23",
|
| 203 |
+
"citation": "Cross-border Currency Reporting Regs, s. 11",
|
| 204 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2002-412/section-11.html"
|
| 205 |
+
},
|
| 206 |
+
{
|
| 207 |
+
"id": "SOR-2002-412-s12",
|
| 208 |
+
"act_code": "SOR-2002-412",
|
| 209 |
+
"act_short": "Cross-border Currency Reporting Regs",
|
| 210 |
+
"act_name": "Cross-border Currency and Monetary Instruments Reporting Regulations",
|
| 211 |
+
"section": "12",
|
| 212 |
+
"marginal_note": "",
|
| 213 |
+
"part": "",
|
| 214 |
+
"division": "",
|
| 215 |
+
"heading": "Exportation Reporting",
|
| 216 |
+
"text": "12 A report required to be made by an exporter with respect to the exportation by mail of currency or monetary instruments shall be made by\n(a) including an exportation report inside the mail item; and\n(b) mailing or submitting, at or before the time when the currency or monetary instruments are mailed, a copy of the exportation report to the customs office that is located nearest to the point at which the item was mailed.",
|
| 217 |
+
"history": "",
|
| 218 |
+
"last_amended": "2006-03-22",
|
| 219 |
+
"current_to": "2024-07-23",
|
| 220 |
+
"citation": "Cross-border Currency Reporting Regs, s. 12",
|
| 221 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2002-412/section-12.html"
|
| 222 |
+
},
|
| 223 |
+
{
|
| 224 |
+
"id": "SOR-2002-412-s13",
|
| 225 |
+
"act_code": "SOR-2002-412",
|
| 226 |
+
"act_short": "Cross-border Currency Reporting Regs",
|
| 227 |
+
"act_name": "Cross-border Currency and Monetary Instruments Reporting Regulations",
|
| 228 |
+
"section": "13",
|
| 229 |
+
"marginal_note": "",
|
| 230 |
+
"part": "",
|
| 231 |
+
"division": "",
|
| 232 |
+
"heading": "Exportation Reporting",
|
| 233 |
+
"text": "13 A report made with respect to the exportation of currency or monetary instruments that have been retained under section 14 of the Act shall be submitted by the person or entity to whom the notice was given at the customs office indicated on the notice.",
|
| 234 |
+
"history": "",
|
| 235 |
+
"last_amended": "2006-03-22",
|
| 236 |
+
"current_to": "2024-07-23",
|
| 237 |
+
"citation": "Cross-border Currency Reporting Regs, s. 13",
|
| 238 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2002-412/section-13.html"
|
| 239 |
+
},
|
| 240 |
+
{
|
| 241 |
+
"id": "SOR-2002-412-s14",
|
| 242 |
+
"act_code": "SOR-2002-412",
|
| 243 |
+
"act_short": "Cross-border Currency Reporting Regs",
|
| 244 |
+
"act_name": "Cross-border Currency and Monetary Instruments Reporting Regulations",
|
| 245 |
+
"section": "14",
|
| 246 |
+
"marginal_note": "",
|
| 247 |
+
"part": "",
|
| 248 |
+
"division": "",
|
| 249 |
+
"heading": "Exportation Reporting",
|
| 250 |
+
"text": "14 A report with respect to the exportation of currency or monetary instruments, other than one referred to in sections 11 to 13, shall be submitted without delay at the customs office that is open for business at the time of exportation and that is nearest to the place of exportation.",
|
| 251 |
+
"history": "",
|
| 252 |
+
"last_amended": "2006-03-22",
|
| 253 |
+
"current_to": "2024-07-23",
|
| 254 |
+
"citation": "Cross-border Currency Reporting Regs, s. 14",
|
| 255 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2002-412/section-14.html"
|
| 256 |
+
},
|
| 257 |
+
{
|
| 258 |
+
"id": "SOR-2002-412-s15",
|
| 259 |
+
"act_code": "SOR-2002-412",
|
| 260 |
+
"act_short": "Cross-border Currency Reporting Regs",
|
| 261 |
+
"act_name": "Cross-border Currency and Monetary Instruments Reporting Regulations",
|
| 262 |
+
"section": "15",
|
| 263 |
+
"marginal_note": "",
|
| 264 |
+
"part": "",
|
| 265 |
+
"division": "",
|
| 266 |
+
"heading": "Exception Applicable to the Bank of Canada",
|
| 267 |
+
"text": "15 A person or entity is not required to make a report under subsection 12(1) of the Act with respect to the importation or exportation of currency by or on behalf of the Bank of Canada for the purposes of the distribution, processing, or testing of banknotes intended for circulation in Canada.",
|
| 268 |
+
"history": "",
|
| 269 |
+
"last_amended": "2006-03-22",
|
| 270 |
+
"current_to": "2024-07-23",
|
| 271 |
+
"citation": "Cross-border Currency Reporting Regs, s. 15",
|
| 272 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2002-412/section-15.html"
|
| 273 |
+
},
|
| 274 |
+
{
|
| 275 |
+
"id": "SOR-2002-412-s15.1",
|
| 276 |
+
"act_code": "SOR-2002-412",
|
| 277 |
+
"act_short": "Cross-border Currency Reporting Regs",
|
| 278 |
+
"act_name": "Cross-border Currency and Monetary Instruments Reporting Regulations",
|
| 279 |
+
"section": "15.1",
|
| 280 |
+
"marginal_note": "",
|
| 281 |
+
"part": "",
|
| 282 |
+
"division": "",
|
| 283 |
+
"heading": "Exemption Applicable to Imported Shares",
|
| 284 |
+
"text": "15.1 A person or entity is not required to make a report under subsection 12(1) of the Act with respect to stocks, bonds and debentures imported into Canada by courier or as mail if the importer is a financial entity or a securities dealer as defined in subsection 1(2) of the Proceeds of Crime (Money Laundering) and Terrorist Financing Regulations or a transfer agent.",
|
| 285 |
+
"history": "SOR/2003-358, s. 27",
|
| 286 |
+
"last_amended": "2006-03-22",
|
| 287 |
+
"current_to": "2024-07-23",
|
| 288 |
+
"citation": "Cross-border Currency Reporting Regs, s. 15.1",
|
| 289 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2002-412/section-15.1.html"
|
| 290 |
+
},
|
| 291 |
+
{
|
| 292 |
+
"id": "SOR-2002-412-s16",
|
| 293 |
+
"act_code": "SOR-2002-412",
|
| 294 |
+
"act_short": "Cross-border Currency Reporting Regs",
|
| 295 |
+
"act_name": "Cross-border Currency and Monetary Instruments Reporting Regulations",
|
| 296 |
+
"section": "16",
|
| 297 |
+
"marginal_note": "",
|
| 298 |
+
"part": "",
|
| 299 |
+
"division": "",
|
| 300 |
+
"heading": "Retention",
|
| 301 |
+
"text": "16\n(1) For the purposes of subsection 14(1) of the Act, an officer shall give the person or entity written notice in person or, if the person is not present, shall send the notice by registered mail to the person’s latest known address.\n(2) For the purposes of subsection 14(2) of the Act, the notice is to be given within 60 days after the day on which the currency or monetary instruments are imported or exported, as the case may be.",
|
| 302 |
+
"history": "",
|
| 303 |
+
"last_amended": "2006-03-22",
|
| 304 |
+
"current_to": "2024-07-23",
|
| 305 |
+
"citation": "Cross-border Currency Reporting Regs, s. 16",
|
| 306 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2002-412/section-16.html"
|
| 307 |
+
},
|
| 308 |
+
{
|
| 309 |
+
"id": "SOR-2002-412-s17",
|
| 310 |
+
"act_code": "SOR-2002-412",
|
| 311 |
+
"act_short": "Cross-border Currency Reporting Regs",
|
| 312 |
+
"act_name": "Cross-border Currency and Monetary Instruments Reporting Regulations",
|
| 313 |
+
"section": "17",
|
| 314 |
+
"marginal_note": "",
|
| 315 |
+
"part": "",
|
| 316 |
+
"division": "",
|
| 317 |
+
"heading": "Retention",
|
| 318 |
+
"text": "17 The prescribed retention period, for the purposes of subsection 14(1) of Act, is\n(a) in the case of importation or exportation by courier or as mail, 30 days after the day on which the retention notice is given or sent; and\n(b) in any other case, seven days after the day on which the retention notice is given or sent.",
|
| 319 |
+
"history": "",
|
| 320 |
+
"last_amended": "2006-03-22",
|
| 321 |
+
"current_to": "2024-07-23",
|
| 322 |
+
"citation": "Cross-border Currency Reporting Regs, s. 17",
|
| 323 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2002-412/section-17.html"
|
| 324 |
+
},
|
| 325 |
+
{
|
| 326 |
+
"id": "SOR-2002-412-s18",
|
| 327 |
+
"act_code": "SOR-2002-412",
|
| 328 |
+
"act_short": "Cross-border Currency Reporting Regs",
|
| 329 |
+
"act_name": "Cross-border Currency and Monetary Instruments Reporting Regulations",
|
| 330 |
+
"section": "18",
|
| 331 |
+
"marginal_note": "",
|
| 332 |
+
"part": "",
|
| 333 |
+
"division": "",
|
| 334 |
+
"heading": "Penalties",
|
| 335 |
+
"text": "18 For the purposes of subsection 18(2) of the Act, the prescribed amount of the penalty is equal to\n(a) 5% of the value of the seized currency or monetary instruments, up to a maximum of $2,500, in the case of a person or entity who\n(i) has not concealed the currency or monetary instruments,\n(ii) has made a full disclosure of the facts concerning the currency or monetary instruments on their discovery, and\n(iii) has no previous seizures under the Act;\n(b) 25% of the value of the seized currency or monetary instruments, in the case of a person or entity who\n(i) has concealed the currency or monetary instruments, other than by means of using a false compartment in a conveyance, or who has made a false statement with respect to the currency or monetary instruments, or\n(ii) has a previous seizure under the Act, other than in respect of any type of concealment or for making false statements with respect to the currency or monetary instruments; and\n(c) 50% of the value of the seized currency or monetary instruments, in the case of a person or entity who\n(i) has concealed the currency or monetary instruments by using a false compartment in a conveyance, or\n(ii) has a previous seizure under the Act for any type of concealment or for making a false statement with respect to the currency or monetary instruments.",
|
| 336 |
+
"history": "SOR/2023-193, s. 35",
|
| 337 |
+
"last_amended": "2023-09-26",
|
| 338 |
+
"current_to": "2024-07-23",
|
| 339 |
+
"citation": "Cross-border Currency Reporting Regs, s. 18",
|
| 340 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2002-412/section-18.html"
|
| 341 |
+
},
|
| 342 |
+
{
|
| 343 |
+
"id": "SOR-2002-412-s19 to 23",
|
| 344 |
+
"act_code": "SOR-2002-412",
|
| 345 |
+
"act_short": "Cross-border Currency Reporting Regs",
|
| 346 |
+
"act_name": "Cross-border Currency and Monetary Instruments Reporting Regulations",
|
| 347 |
+
"section": "19 to 23",
|
| 348 |
+
"marginal_note": "",
|
| 349 |
+
"part": "",
|
| 350 |
+
"division": "",
|
| 351 |
+
"heading": "Penalties",
|
| 352 |
+
"text": "19 to 23 [Amendments]",
|
| 353 |
+
"history": "",
|
| 354 |
+
"last_amended": "2006-03-22",
|
| 355 |
+
"current_to": "2024-07-23",
|
| 356 |
+
"citation": "Cross-border Currency Reporting Regs, s. 19 to 23",
|
| 357 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2002-412/section-19 to 23.html"
|
| 358 |
+
},
|
| 359 |
+
{
|
| 360 |
+
"id": "SOR-2002-412-s24",
|
| 361 |
+
"act_code": "SOR-2002-412",
|
| 362 |
+
"act_short": "Cross-border Currency Reporting Regs",
|
| 363 |
+
"act_name": "Cross-border Currency and Monetary Instruments Reporting Regulations",
|
| 364 |
+
"section": "24",
|
| 365 |
+
"marginal_note": "",
|
| 366 |
+
"part": "",
|
| 367 |
+
"division": "",
|
| 368 |
+
"heading": "Coming into Force",
|
| 369 |
+
"text": "24\n(1) Subject to subsection (2), these Regulations come into force on January 6, 2003.\n(2) Sections 19 to 23 come into force on the day on which the Presentation of Persons (2003) Regulations come into force.",
|
| 370 |
+
"history": "",
|
| 371 |
+
"last_amended": "2006-03-22",
|
| 372 |
+
"current_to": "2024-07-23",
|
| 373 |
+
"citation": "Cross-border Currency Reporting Regs, s. 24",
|
| 374 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2002-412/section-24.html"
|
| 375 |
+
}
|
| 376 |
+
]
|
data/processed/SOR-2012-230.json
ADDED
|
@@ -0,0 +1,495 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"id": "SOR-2012-230-s1",
|
| 4 |
+
"act_code": "SOR-2012-230",
|
| 5 |
+
"act_short": "New Classes of Practitioners Regs",
|
| 6 |
+
"act_name": "New Classes of Practitioners Regulations",
|
| 7 |
+
"section": "1",
|
| 8 |
+
"marginal_note": "Definitions",
|
| 9 |
+
"part": "",
|
| 10 |
+
"division": "",
|
| 11 |
+
"heading": "Interpretation",
|
| 12 |
+
"text": "1 The following definitions apply in these Regulations.\nAct means the Controlled Drugs and Substances Act. (Loi)\nlisted substance means a substance set out in Schedule 1 to the Benzodiazepines and Other Targeted Substances Regulations, the schedule to Part G of the Food and Drug Regulations or the schedule to the Narcotic Control Regulations, and includes anything that contains the substance. (substance inscrite)\nmidwife means a person who is registered and entitled under the laws of a province to practise midwifery and who is practising midwifery in that province. (sage-femme)\nnurse practitioner means a person who is registered and entitled under the laws of a province to practise as a nurse practitioner or an equivalent designation and who is practising as a nurse practitioner or an equivalent designation in that province. For the purpose of this definition, a designation is equivalent when it designates a person who\n(a) is a registered nurse;\n(b) possesses additional educational preparation and experience related to health care;\n(c) can autonomously make diagnoses, order and interpret diagnostic tests, prescribe drugs and perform other specific procedures under the laws of a province; and\n(d) is practising their profession in accordance with, for example, the following provincial laws, as amended from time to time:\n(i) the Extended Practice Regulation, Man. Reg. 43/2005, made under The Registered Nurses Act of Manitoba, C.C.S.M., c. R40,\n(ii) Ontario Regulation 275/94, made under the Nursing Act, 1991 of Ontario, S.O. 1991, c. 32, or\n(iii) the Regulation respecting Ordre des infirmières et infirmiers du Québec classes of specialities related to the performance of acts contemplated in section 36.1 of the Nurses Act, R.R.Q., c. I-8, r. 8, made under the Nurses Act of Quebec, R.S.Q., c. I-8. (infirmier praticien)\npodiatrist means a person who is registered and entitled under the laws of a province to practise podiatry or chiropody and who is practising podiatry or chiropody in that province. (podiatre)",
|
| 13 |
+
"history": "",
|
| 14 |
+
"last_amended": "2012-11-21",
|
| 15 |
+
"current_to": "2025-12-02",
|
| 16 |
+
"citation": "New Classes of Practitioners Regs, s. 1",
|
| 17 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2012-230/section-1.html"
|
| 18 |
+
},
|
| 19 |
+
{
|
| 20 |
+
"id": "SOR-2012-230-s2",
|
| 21 |
+
"act_code": "SOR-2012-230",
|
| 22 |
+
"act_short": "New Classes of Practitioners Regs",
|
| 23 |
+
"act_name": "New Classes of Practitioners Regulations",
|
| 24 |
+
"section": "2",
|
| 25 |
+
"marginal_note": "Classes",
|
| 26 |
+
"part": "",
|
| 27 |
+
"division": "",
|
| 28 |
+
"heading": "New Classes of Practitioners Prescribed",
|
| 29 |
+
"text": "2 For the purpose of the definition practitioner in subsection 2(1) of the Act, the following classes of persons are prescribed:\n(a) midwives;\n(b) nurse practitioners; and\n(c) podiatrists.",
|
| 30 |
+
"history": "",
|
| 31 |
+
"last_amended": "2012-11-21",
|
| 32 |
+
"current_to": "2025-12-02",
|
| 33 |
+
"citation": "New Classes of Practitioners Regs, s. 2",
|
| 34 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2012-230/section-2.html"
|
| 35 |
+
},
|
| 36 |
+
{
|
| 37 |
+
"id": "SOR-2012-230-s3",
|
| 38 |
+
"act_code": "SOR-2012-230",
|
| 39 |
+
"act_short": "New Classes of Practitioners Regs",
|
| 40 |
+
"act_name": "New Classes of Practitioners Regulations",
|
| 41 |
+
"section": "3",
|
| 42 |
+
"marginal_note": "Permitted activities",
|
| 43 |
+
"part": "",
|
| 44 |
+
"division": "",
|
| 45 |
+
"heading": "Permitted Activities and Exclusions",
|
| 46 |
+
"text": "3 Subject to section 4, a midwife, nurse practitioner or podiatrist, as a practitioner, may prescribe or possess a listed substance, or conduct an activity with a listed substance, in accordance with the Benzodiazepines and Other Targeted Substances Regulations, Part G of the Food and Drug Regulations or the Narcotic Control Regulations if they are permitted to prescribe, in their practice under the laws of the province in which they are registered and entitled to practise, that substance.",
|
| 47 |
+
"history": "SOR/2013-119, s. 251; SOR/2016-230, s. 280; SOR/2018-147, s. 31",
|
| 48 |
+
"last_amended": "2018-10-17",
|
| 49 |
+
"current_to": "2025-12-02",
|
| 50 |
+
"citation": "New Classes of Practitioners Regs, s. 3",
|
| 51 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2012-230/section-3.html"
|
| 52 |
+
},
|
| 53 |
+
{
|
| 54 |
+
"id": "SOR-2012-230-s4",
|
| 55 |
+
"act_code": "SOR-2012-230",
|
| 56 |
+
"act_short": "New Classes of Practitioners Regs",
|
| 57 |
+
"act_name": "New Classes of Practitioners Regulations",
|
| 58 |
+
"section": "4",
|
| 59 |
+
"marginal_note": "Exclusions — midwife or podiatrist",
|
| 60 |
+
"part": "",
|
| 61 |
+
"division": "",
|
| 62 |
+
"heading": "Permitted Activities and Exclusions",
|
| 63 |
+
"text": "4\n(1) In respect of a midwife or podiatrist, a listed substance excludes a substance set out in\n(a) the definition designated drug in subsection G.04.001(1) of the Food and Drug Regulations;\n(b) item 1 of Part III of the schedule to Part G of the Food and Drug Regulations; and\n(c) any of subitems 1(1) and (10), 2(1), 5(4) and 10(1) of the schedule to the Narcotic Control Regulations.\n(2) [Exclusions — nurse practitioner] In respect of a nurse practitioner, a listed substance excludes a substance set out in\n(a) item 1 of Part III of the schedule to Part G of the Food and Drug Regulations, except for subitem (40); and\n(b) subitem 1(1) or 2(1) of the schedule to the Narcotic Control Regulations.",
|
| 64 |
+
"history": "SOR/2013-119, s. 252; SOR/2013-172, s. 10; SOR/2016-239, s. 9; SOR/2018-37, s. 8; SOR/2018-147, s. 32",
|
| 65 |
+
"last_amended": "2018-10-17",
|
| 66 |
+
"current_to": "2025-12-02",
|
| 67 |
+
"citation": "New Classes of Practitioners Regs, s. 4",
|
| 68 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2012-230/section-4.html"
|
| 69 |
+
},
|
| 70 |
+
{
|
| 71 |
+
"id": "SOR-2012-230-s5",
|
| 72 |
+
"act_code": "SOR-2012-230",
|
| 73 |
+
"act_short": "New Classes of Practitioners Regs",
|
| 74 |
+
"act_name": "New Classes of Practitioners Regulations",
|
| 75 |
+
"section": "5",
|
| 76 |
+
"marginal_note": "Inconsistency",
|
| 77 |
+
"part": "",
|
| 78 |
+
"division": "",
|
| 79 |
+
"heading": "Inconsistency with other Regulations",
|
| 80 |
+
"text": "5 In the event of any inconsistency between these Regulations and the Benzodiazepines and Other Targeted Substances Regulations, Part G of the Food and Drug Regulations or the Narcotic Control Regulations, these Regulations prevail to the extent of the inconsistency.",
|
| 81 |
+
"history": "",
|
| 82 |
+
"last_amended": "2012-11-21",
|
| 83 |
+
"current_to": "2025-12-02",
|
| 84 |
+
"citation": "New Classes of Practitioners Regs, s. 5",
|
| 85 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2012-230/section-5.html"
|
| 86 |
+
},
|
| 87 |
+
{
|
| 88 |
+
"id": "SOR-2012-230-s6",
|
| 89 |
+
"act_code": "SOR-2012-230",
|
| 90 |
+
"act_short": "New Classes of Practitioners Regs",
|
| 91 |
+
"act_name": "New Classes of Practitioners Regulations",
|
| 92 |
+
"section": "6",
|
| 93 |
+
"marginal_note": "",
|
| 94 |
+
"part": "",
|
| 95 |
+
"division": "",
|
| 96 |
+
"heading": "Food and Drug Regulations",
|
| 97 |
+
"text": "6 [Amendments]",
|
| 98 |
+
"history": "",
|
| 99 |
+
"last_amended": "2012-11-21",
|
| 100 |
+
"current_to": "2025-12-02",
|
| 101 |
+
"citation": "New Classes of Practitioners Regs, s. 6",
|
| 102 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2012-230/section-6.html"
|
| 103 |
+
},
|
| 104 |
+
{
|
| 105 |
+
"id": "SOR-2012-230-s7",
|
| 106 |
+
"act_code": "SOR-2012-230",
|
| 107 |
+
"act_short": "New Classes of Practitioners Regs",
|
| 108 |
+
"act_name": "New Classes of Practitioners Regulations",
|
| 109 |
+
"section": "7",
|
| 110 |
+
"marginal_note": "",
|
| 111 |
+
"part": "",
|
| 112 |
+
"division": "",
|
| 113 |
+
"heading": "Food and Drug Regulations",
|
| 114 |
+
"text": "7 [Amendment]",
|
| 115 |
+
"history": "",
|
| 116 |
+
"last_amended": "2012-11-21",
|
| 117 |
+
"current_to": "2025-12-02",
|
| 118 |
+
"citation": "New Classes of Practitioners Regs, s. 7",
|
| 119 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2012-230/section-7.html"
|
| 120 |
+
},
|
| 121 |
+
{
|
| 122 |
+
"id": "SOR-2012-230-s8",
|
| 123 |
+
"act_code": "SOR-2012-230",
|
| 124 |
+
"act_short": "New Classes of Practitioners Regs",
|
| 125 |
+
"act_name": "New Classes of Practitioners Regulations",
|
| 126 |
+
"section": "8",
|
| 127 |
+
"marginal_note": "",
|
| 128 |
+
"part": "",
|
| 129 |
+
"division": "",
|
| 130 |
+
"heading": "Food and Drug Regulations",
|
| 131 |
+
"text": "8 [Amendment]",
|
| 132 |
+
"history": "",
|
| 133 |
+
"last_amended": "2012-11-21",
|
| 134 |
+
"current_to": "2025-12-02",
|
| 135 |
+
"citation": "New Classes of Practitioners Regs, s. 8",
|
| 136 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2012-230/section-8.html"
|
| 137 |
+
},
|
| 138 |
+
{
|
| 139 |
+
"id": "SOR-2012-230-s9",
|
| 140 |
+
"act_code": "SOR-2012-230",
|
| 141 |
+
"act_short": "New Classes of Practitioners Regs",
|
| 142 |
+
"act_name": "New Classes of Practitioners Regulations",
|
| 143 |
+
"section": "9",
|
| 144 |
+
"marginal_note": "",
|
| 145 |
+
"part": "",
|
| 146 |
+
"division": "",
|
| 147 |
+
"heading": "Food and Drug Regulations",
|
| 148 |
+
"text": "9 [Amendment]",
|
| 149 |
+
"history": "",
|
| 150 |
+
"last_amended": "2012-11-21",
|
| 151 |
+
"current_to": "2025-12-02",
|
| 152 |
+
"citation": "New Classes of Practitioners Regs, s. 9",
|
| 153 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2012-230/section-9.html"
|
| 154 |
+
},
|
| 155 |
+
{
|
| 156 |
+
"id": "SOR-2012-230-s10",
|
| 157 |
+
"act_code": "SOR-2012-230",
|
| 158 |
+
"act_short": "New Classes of Practitioners Regs",
|
| 159 |
+
"act_name": "New Classes of Practitioners Regulations",
|
| 160 |
+
"section": "10",
|
| 161 |
+
"marginal_note": "",
|
| 162 |
+
"part": "",
|
| 163 |
+
"division": "",
|
| 164 |
+
"heading": "Food and Drug Regulations",
|
| 165 |
+
"text": "10 [Amendments]",
|
| 166 |
+
"history": "",
|
| 167 |
+
"last_amended": "2012-11-21",
|
| 168 |
+
"current_to": "2025-12-02",
|
| 169 |
+
"citation": "New Classes of Practitioners Regs, s. 10",
|
| 170 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2012-230/section-10.html"
|
| 171 |
+
},
|
| 172 |
+
{
|
| 173 |
+
"id": "SOR-2012-230-s11",
|
| 174 |
+
"act_code": "SOR-2012-230",
|
| 175 |
+
"act_short": "New Classes of Practitioners Regs",
|
| 176 |
+
"act_name": "New Classes of Practitioners Regulations",
|
| 177 |
+
"section": "11",
|
| 178 |
+
"marginal_note": "",
|
| 179 |
+
"part": "",
|
| 180 |
+
"division": "",
|
| 181 |
+
"heading": "Food and Drug Regulations",
|
| 182 |
+
"text": "11 [Amendment]",
|
| 183 |
+
"history": "",
|
| 184 |
+
"last_amended": "2012-11-21",
|
| 185 |
+
"current_to": "2025-12-02",
|
| 186 |
+
"citation": "New Classes of Practitioners Regs, s. 11",
|
| 187 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2012-230/section-11.html"
|
| 188 |
+
},
|
| 189 |
+
{
|
| 190 |
+
"id": "SOR-2012-230-s12",
|
| 191 |
+
"act_code": "SOR-2012-230",
|
| 192 |
+
"act_short": "New Classes of Practitioners Regs",
|
| 193 |
+
"act_name": "New Classes of Practitioners Regulations",
|
| 194 |
+
"section": "12",
|
| 195 |
+
"marginal_note": "",
|
| 196 |
+
"part": "",
|
| 197 |
+
"division": "",
|
| 198 |
+
"heading": "Food and Drug Regulations",
|
| 199 |
+
"text": "12 [Amendments]",
|
| 200 |
+
"history": "",
|
| 201 |
+
"last_amended": "2012-11-21",
|
| 202 |
+
"current_to": "2025-12-02",
|
| 203 |
+
"citation": "New Classes of Practitioners Regs, s. 12",
|
| 204 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2012-230/section-12.html"
|
| 205 |
+
},
|
| 206 |
+
{
|
| 207 |
+
"id": "SOR-2012-230-s13",
|
| 208 |
+
"act_code": "SOR-2012-230",
|
| 209 |
+
"act_short": "New Classes of Practitioners Regs",
|
| 210 |
+
"act_name": "New Classes of Practitioners Regulations",
|
| 211 |
+
"section": "13",
|
| 212 |
+
"marginal_note": "",
|
| 213 |
+
"part": "",
|
| 214 |
+
"division": "",
|
| 215 |
+
"heading": "Food and Drug Regulations",
|
| 216 |
+
"text": "13 [Amendment]",
|
| 217 |
+
"history": "",
|
| 218 |
+
"last_amended": "2012-11-21",
|
| 219 |
+
"current_to": "2025-12-02",
|
| 220 |
+
"citation": "New Classes of Practitioners Regs, s. 13",
|
| 221 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2012-230/section-13.html"
|
| 222 |
+
},
|
| 223 |
+
{
|
| 224 |
+
"id": "SOR-2012-230-s14",
|
| 225 |
+
"act_code": "SOR-2012-230",
|
| 226 |
+
"act_short": "New Classes of Practitioners Regs",
|
| 227 |
+
"act_name": "New Classes of Practitioners Regulations",
|
| 228 |
+
"section": "14",
|
| 229 |
+
"marginal_note": "",
|
| 230 |
+
"part": "",
|
| 231 |
+
"division": "",
|
| 232 |
+
"heading": "Narcotic Control Regulations",
|
| 233 |
+
"text": "14 [Amendments]",
|
| 234 |
+
"history": "",
|
| 235 |
+
"last_amended": "2012-11-21",
|
| 236 |
+
"current_to": "2025-12-02",
|
| 237 |
+
"citation": "New Classes of Practitioners Regs, s. 14",
|
| 238 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2012-230/section-14.html"
|
| 239 |
+
},
|
| 240 |
+
{
|
| 241 |
+
"id": "SOR-2012-230-s15",
|
| 242 |
+
"act_code": "SOR-2012-230",
|
| 243 |
+
"act_short": "New Classes of Practitioners Regs",
|
| 244 |
+
"act_name": "New Classes of Practitioners Regulations",
|
| 245 |
+
"section": "15",
|
| 246 |
+
"marginal_note": "",
|
| 247 |
+
"part": "",
|
| 248 |
+
"division": "",
|
| 249 |
+
"heading": "Narcotic Control Regulations",
|
| 250 |
+
"text": "15 [Amendment]",
|
| 251 |
+
"history": "",
|
| 252 |
+
"last_amended": "2012-11-21",
|
| 253 |
+
"current_to": "2025-12-02",
|
| 254 |
+
"citation": "New Classes of Practitioners Regs, s. 15",
|
| 255 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2012-230/section-15.html"
|
| 256 |
+
},
|
| 257 |
+
{
|
| 258 |
+
"id": "SOR-2012-230-s16",
|
| 259 |
+
"act_code": "SOR-2012-230",
|
| 260 |
+
"act_short": "New Classes of Practitioners Regs",
|
| 261 |
+
"act_name": "New Classes of Practitioners Regulations",
|
| 262 |
+
"section": "16",
|
| 263 |
+
"marginal_note": "",
|
| 264 |
+
"part": "",
|
| 265 |
+
"division": "",
|
| 266 |
+
"heading": "Narcotic Control Regulations",
|
| 267 |
+
"text": "16 [Amendment]",
|
| 268 |
+
"history": "",
|
| 269 |
+
"last_amended": "2012-11-21",
|
| 270 |
+
"current_to": "2025-12-02",
|
| 271 |
+
"citation": "New Classes of Practitioners Regs, s. 16",
|
| 272 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2012-230/section-16.html"
|
| 273 |
+
},
|
| 274 |
+
{
|
| 275 |
+
"id": "SOR-2012-230-s17",
|
| 276 |
+
"act_code": "SOR-2012-230",
|
| 277 |
+
"act_short": "New Classes of Practitioners Regs",
|
| 278 |
+
"act_name": "New Classes of Practitioners Regulations",
|
| 279 |
+
"section": "17",
|
| 280 |
+
"marginal_note": "",
|
| 281 |
+
"part": "",
|
| 282 |
+
"division": "",
|
| 283 |
+
"heading": "Narcotic Control Regulations",
|
| 284 |
+
"text": "17 [Amendment]",
|
| 285 |
+
"history": "",
|
| 286 |
+
"last_amended": "2012-11-21",
|
| 287 |
+
"current_to": "2025-12-02",
|
| 288 |
+
"citation": "New Classes of Practitioners Regs, s. 17",
|
| 289 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2012-230/section-17.html"
|
| 290 |
+
},
|
| 291 |
+
{
|
| 292 |
+
"id": "SOR-2012-230-s18",
|
| 293 |
+
"act_code": "SOR-2012-230",
|
| 294 |
+
"act_short": "New Classes of Practitioners Regs",
|
| 295 |
+
"act_name": "New Classes of Practitioners Regulations",
|
| 296 |
+
"section": "18",
|
| 297 |
+
"marginal_note": "",
|
| 298 |
+
"part": "",
|
| 299 |
+
"division": "",
|
| 300 |
+
"heading": "Narcotic Control Regulations",
|
| 301 |
+
"text": "18 [Amendments]",
|
| 302 |
+
"history": "",
|
| 303 |
+
"last_amended": "2012-11-21",
|
| 304 |
+
"current_to": "2025-12-02",
|
| 305 |
+
"citation": "New Classes of Practitioners Regs, s. 18",
|
| 306 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2012-230/section-18.html"
|
| 307 |
+
},
|
| 308 |
+
{
|
| 309 |
+
"id": "SOR-2012-230-s19",
|
| 310 |
+
"act_code": "SOR-2012-230",
|
| 311 |
+
"act_short": "New Classes of Practitioners Regs",
|
| 312 |
+
"act_name": "New Classes of Practitioners Regulations",
|
| 313 |
+
"section": "19",
|
| 314 |
+
"marginal_note": "",
|
| 315 |
+
"part": "",
|
| 316 |
+
"division": "",
|
| 317 |
+
"heading": "Narcotic Control Regulations",
|
| 318 |
+
"text": "19 [Amendment]",
|
| 319 |
+
"history": "",
|
| 320 |
+
"last_amended": "2012-11-21",
|
| 321 |
+
"current_to": "2025-12-02",
|
| 322 |
+
"citation": "New Classes of Practitioners Regs, s. 19",
|
| 323 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2012-230/section-19.html"
|
| 324 |
+
},
|
| 325 |
+
{
|
| 326 |
+
"id": "SOR-2012-230-s20",
|
| 327 |
+
"act_code": "SOR-2012-230",
|
| 328 |
+
"act_short": "New Classes of Practitioners Regs",
|
| 329 |
+
"act_name": "New Classes of Practitioners Regulations",
|
| 330 |
+
"section": "20",
|
| 331 |
+
"marginal_note": "",
|
| 332 |
+
"part": "",
|
| 333 |
+
"division": "",
|
| 334 |
+
"heading": "Narcotic Control Regulations",
|
| 335 |
+
"text": "20 [Amendments]",
|
| 336 |
+
"history": "",
|
| 337 |
+
"last_amended": "2012-11-21",
|
| 338 |
+
"current_to": "2025-12-02",
|
| 339 |
+
"citation": "New Classes of Practitioners Regs, s. 20",
|
| 340 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2012-230/section-20.html"
|
| 341 |
+
},
|
| 342 |
+
{
|
| 343 |
+
"id": "SOR-2012-230-s21",
|
| 344 |
+
"act_code": "SOR-2012-230",
|
| 345 |
+
"act_short": "New Classes of Practitioners Regs",
|
| 346 |
+
"act_name": "New Classes of Practitioners Regulations",
|
| 347 |
+
"section": "21",
|
| 348 |
+
"marginal_note": "",
|
| 349 |
+
"part": "",
|
| 350 |
+
"division": "",
|
| 351 |
+
"heading": "Narcotic Control Regulations",
|
| 352 |
+
"text": "21 [Amendment]",
|
| 353 |
+
"history": "",
|
| 354 |
+
"last_amended": "2012-11-21",
|
| 355 |
+
"current_to": "2025-12-02",
|
| 356 |
+
"citation": "New Classes of Practitioners Regs, s. 21",
|
| 357 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2012-230/section-21.html"
|
| 358 |
+
},
|
| 359 |
+
{
|
| 360 |
+
"id": "SOR-2012-230-s22",
|
| 361 |
+
"act_code": "SOR-2012-230",
|
| 362 |
+
"act_short": "New Classes of Practitioners Regs",
|
| 363 |
+
"act_name": "New Classes of Practitioners Regulations",
|
| 364 |
+
"section": "22",
|
| 365 |
+
"marginal_note": "",
|
| 366 |
+
"part": "",
|
| 367 |
+
"division": "",
|
| 368 |
+
"heading": "Narcotic Control Regulations",
|
| 369 |
+
"text": "22 [Amendment]",
|
| 370 |
+
"history": "",
|
| 371 |
+
"last_amended": "2012-11-21",
|
| 372 |
+
"current_to": "2025-12-02",
|
| 373 |
+
"citation": "New Classes of Practitioners Regs, s. 22",
|
| 374 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2012-230/section-22.html"
|
| 375 |
+
},
|
| 376 |
+
{
|
| 377 |
+
"id": "SOR-2012-230-s23",
|
| 378 |
+
"act_code": "SOR-2012-230",
|
| 379 |
+
"act_short": "New Classes of Practitioners Regs",
|
| 380 |
+
"act_name": "New Classes of Practitioners Regulations",
|
| 381 |
+
"section": "23",
|
| 382 |
+
"marginal_note": "",
|
| 383 |
+
"part": "",
|
| 384 |
+
"division": "",
|
| 385 |
+
"heading": "Narcotic Control Regulations",
|
| 386 |
+
"text": "23 [Amendment]",
|
| 387 |
+
"history": "",
|
| 388 |
+
"last_amended": "2012-11-21",
|
| 389 |
+
"current_to": "2025-12-02",
|
| 390 |
+
"citation": "New Classes of Practitioners Regs, s. 23",
|
| 391 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2012-230/section-23.html"
|
| 392 |
+
},
|
| 393 |
+
{
|
| 394 |
+
"id": "SOR-2012-230-s24",
|
| 395 |
+
"act_code": "SOR-2012-230",
|
| 396 |
+
"act_short": "New Classes of Practitioners Regs",
|
| 397 |
+
"act_name": "New Classes of Practitioners Regulations",
|
| 398 |
+
"section": "24",
|
| 399 |
+
"marginal_note": "",
|
| 400 |
+
"part": "",
|
| 401 |
+
"division": "",
|
| 402 |
+
"heading": "Narcotic Control Regulations",
|
| 403 |
+
"text": "24 [Amendment]",
|
| 404 |
+
"history": "",
|
| 405 |
+
"last_amended": "2012-11-21",
|
| 406 |
+
"current_to": "2025-12-02",
|
| 407 |
+
"citation": "New Classes of Practitioners Regs, s. 24",
|
| 408 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2012-230/section-24.html"
|
| 409 |
+
},
|
| 410 |
+
{
|
| 411 |
+
"id": "SOR-2012-230-s25",
|
| 412 |
+
"act_code": "SOR-2012-230",
|
| 413 |
+
"act_short": "New Classes of Practitioners Regs",
|
| 414 |
+
"act_name": "New Classes of Practitioners Regulations",
|
| 415 |
+
"section": "25",
|
| 416 |
+
"marginal_note": "",
|
| 417 |
+
"part": "",
|
| 418 |
+
"division": "",
|
| 419 |
+
"heading": "Benzodiazepines and Other Targeted Substances Regulations",
|
| 420 |
+
"text": "25 [Amendments]",
|
| 421 |
+
"history": "",
|
| 422 |
+
"last_amended": "2012-11-21",
|
| 423 |
+
"current_to": "2025-12-02",
|
| 424 |
+
"citation": "New Classes of Practitioners Regs, s. 25",
|
| 425 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2012-230/section-25.html"
|
| 426 |
+
},
|
| 427 |
+
{
|
| 428 |
+
"id": "SOR-2012-230-s26",
|
| 429 |
+
"act_code": "SOR-2012-230",
|
| 430 |
+
"act_short": "New Classes of Practitioners Regs",
|
| 431 |
+
"act_name": "New Classes of Practitioners Regulations",
|
| 432 |
+
"section": "26",
|
| 433 |
+
"marginal_note": "",
|
| 434 |
+
"part": "",
|
| 435 |
+
"division": "",
|
| 436 |
+
"heading": "Benzodiazepines and Other Targeted Substances Regulations",
|
| 437 |
+
"text": "26 [Amendment]",
|
| 438 |
+
"history": "",
|
| 439 |
+
"last_amended": "2012-11-21",
|
| 440 |
+
"current_to": "2025-12-02",
|
| 441 |
+
"citation": "New Classes of Practitioners Regs, s. 26",
|
| 442 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2012-230/section-26.html"
|
| 443 |
+
},
|
| 444 |
+
{
|
| 445 |
+
"id": "SOR-2012-230-s27",
|
| 446 |
+
"act_code": "SOR-2012-230",
|
| 447 |
+
"act_short": "New Classes of Practitioners Regs",
|
| 448 |
+
"act_name": "New Classes of Practitioners Regulations",
|
| 449 |
+
"section": "27",
|
| 450 |
+
"marginal_note": "",
|
| 451 |
+
"part": "",
|
| 452 |
+
"division": "",
|
| 453 |
+
"heading": "Benzodiazepines and Other Targeted Substances Regulations",
|
| 454 |
+
"text": "27 [Amendment]",
|
| 455 |
+
"history": "",
|
| 456 |
+
"last_amended": "2012-11-21",
|
| 457 |
+
"current_to": "2025-12-02",
|
| 458 |
+
"citation": "New Classes of Practitioners Regs, s. 27",
|
| 459 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2012-230/section-27.html"
|
| 460 |
+
},
|
| 461 |
+
{
|
| 462 |
+
"id": "SOR-2012-230-s28",
|
| 463 |
+
"act_code": "SOR-2012-230",
|
| 464 |
+
"act_short": "New Classes of Practitioners Regs",
|
| 465 |
+
"act_name": "New Classes of Practitioners Regulations",
|
| 466 |
+
"section": "28",
|
| 467 |
+
"marginal_note": "",
|
| 468 |
+
"part": "",
|
| 469 |
+
"division": "",
|
| 470 |
+
"heading": "Transitional Provisions",
|
| 471 |
+
"text": "28 [Transitional Provisions]",
|
| 472 |
+
"history": "",
|
| 473 |
+
"last_amended": "2012-11-21",
|
| 474 |
+
"current_to": "2025-12-02",
|
| 475 |
+
"citation": "New Classes of Practitioners Regs, s. 28",
|
| 476 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2012-230/section-28.html"
|
| 477 |
+
},
|
| 478 |
+
{
|
| 479 |
+
"id": "SOR-2012-230-s*29",
|
| 480 |
+
"act_code": "SOR-2012-230",
|
| 481 |
+
"act_short": "New Classes of Practitioners Regs",
|
| 482 |
+
"act_name": "New Classes of Practitioners Regulations",
|
| 483 |
+
"section": "*29",
|
| 484 |
+
"marginal_note": "Publication",
|
| 485 |
+
"part": "",
|
| 486 |
+
"division": "",
|
| 487 |
+
"heading": "Coming into Force",
|
| 488 |
+
"text": "*29 These Regulations come into force on the day on which they are published in the Canada Gazette, Part II.\n* [Note: Regulations in force November 21, 2012.]",
|
| 489 |
+
"history": "",
|
| 490 |
+
"last_amended": "2012-11-01",
|
| 491 |
+
"current_to": "2025-12-02",
|
| 492 |
+
"citation": "New Classes of Practitioners Regs, s. *29",
|
| 493 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2012-230/section-*29.html"
|
| 494 |
+
}
|
| 495 |
+
]
|
data/processed/SOR-2018-108.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/processed/SOR-2018-144.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/processed/SOR-95-212.json
ADDED
|
@@ -0,0 +1,1039 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"id": "SOR-95-212-s1",
|
| 4 |
+
"act_code": "SOR-95-212",
|
| 5 |
+
"act_short": "Plant Protection Regs",
|
| 6 |
+
"act_name": "Plant Protection Regulations",
|
| 7 |
+
"section": "1",
|
| 8 |
+
"marginal_note": "",
|
| 9 |
+
"part": "",
|
| 10 |
+
"division": "",
|
| 11 |
+
"heading": "",
|
| 12 |
+
"text": "1 [Repealed, SOR/2025-236, s. 2]",
|
| 13 |
+
"history": "",
|
| 14 |
+
"last_amended": "2025-11-21",
|
| 15 |
+
"current_to": "2025-11-27",
|
| 16 |
+
"citation": "Plant Protection Regs, s. 1",
|
| 17 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-95-212/section-1.html"
|
| 18 |
+
},
|
| 19 |
+
{
|
| 20 |
+
"id": "SOR-95-212-s2",
|
| 21 |
+
"act_code": "SOR-95-212",
|
| 22 |
+
"act_short": "Plant Protection Regs",
|
| 23 |
+
"act_name": "Plant Protection Regulations",
|
| 24 |
+
"section": "2",
|
| 25 |
+
"marginal_note": "",
|
| 26 |
+
"part": "",
|
| 27 |
+
"division": "",
|
| 28 |
+
"heading": "Interpretation",
|
| 29 |
+
"text": "2 In these Regulations,\nAct means the Plant Protection Act; (Loi)\nactivity, in respect of a thing, means the processing, handling, packaging, labelling, distributing, sale, disposition, loading, unloading, movement, use, treatment, preservation, safeguarding or storage of the thing, and includes any activity referred to in subsection 6(1) of the Act; (activité)\nAgency means the Canadian Food Inspection Agency established by section 3 of the Canadian Food Inspection Agency Act; (Agence)\ninfested means that a pest is present in or on a thing or place or that the thing or place is so exposed to a pest that one can reasonably suspect that the pest is in or on the thing or place; (infesté) (parasité)\nMovement Certificate means a document, issued pursuant to the Act and signed by an inspector, that authorizes the movement of things within Canada or from Canada to a foreign destination; (certificat de circulation)\npermit means a permit to import a thing issued by the Minister pursuant to subsection 32(1) or 43(1); (permis)\npest risk assessment means a pest risk assessment conducted by the Minister in accordance with the principles of the International Standards for Phytosanitary Measures, Part I — Import Regulations, Guidelines for Pest Risk analysis, published by the Food and Agriculture Organization of the United Nations, as amended from time to time, with the definition pest in those guidelines being replaced by the definition pest in section 3 of the Act, for the purpose of\n(a) determining if a thing is a pest, is or could be infested or constitutes or could constitute a biological obstacle to the control of a pest,\n(b) recommending actions, as applicable,\n(i) to prevent the introduction into Canada or the spread within or from Canada of any pest or biological obstacle to the control of a pest, or\n(ii) to control a pest or to eradicate a pest or biological obstacle to the control of a pest,\n(c) determining if a thing that is a pest or biological obstacle to the control of a pest has a significant adverse effect on the environment, and\n(d) minimizing the degradation of environmental quality with respect to Canadian flora; (analyse du risque phytosanitaire)\nquarantine means the confinement of a thing for a period and includes confinement for the purposes of\n(a) observation, inspection, testing or analysis of a thing to determine if the thing is a pest, is or could be infested or constitutes or could constitute a biological obstacle to the control of a pest, or\n(b) preventing the spread of a pest or biological obstacle to the control of a pest; (quarantaine)\nsend includes electronic transmittal and mail. (envoyer)",
|
| 30 |
+
"history": "SOR/97-292, s. 30; SOR/2003-6, s. 98; SOR/2009-326, s. 1(F)",
|
| 31 |
+
"last_amended": "2009-12-10",
|
| 32 |
+
"current_to": "2025-11-27",
|
| 33 |
+
"citation": "Plant Protection Regs, s. 2",
|
| 34 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-95-212/section-2.html"
|
| 35 |
+
},
|
| 36 |
+
{
|
| 37 |
+
"id": "SOR-95-212-s3",
|
| 38 |
+
"act_code": "SOR-95-212",
|
| 39 |
+
"act_short": "Plant Protection Regs",
|
| 40 |
+
"act_name": "Plant Protection Regulations",
|
| 41 |
+
"section": "3",
|
| 42 |
+
"marginal_note": "",
|
| 43 |
+
"part": "PART I - General",
|
| 44 |
+
"division": "",
|
| 45 |
+
"heading": "Eradicating and Preventing the Spread of Pests",
|
| 46 |
+
"text": "3 An inspector may, as appropriate in the circumstances for the purpose of eradicating a pest or preventing its spread, take one or more of the actions that the inspector is authorized to take under the Act or any regulation or order made under the Act if\n(a) after a pest risk assessment, the Minister or an inspector believes on reasonable grounds that a thing is a pest, or a thing or place is or could be infested or constitutes or could constitute a biological obstacle to the control of a pest; and\n(b) the Minister determines that it is necessary and cost-justifiable to take pest control measures.",
|
| 47 |
+
"history": "SOR/2009-326, s. 2",
|
| 48 |
+
"last_amended": "2009-12-10",
|
| 49 |
+
"current_to": "2025-11-27",
|
| 50 |
+
"citation": "Plant Protection Regs, s. 3",
|
| 51 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-95-212/section-3.html"
|
| 52 |
+
},
|
| 53 |
+
{
|
| 54 |
+
"id": "SOR-95-212-s4",
|
| 55 |
+
"act_code": "SOR-95-212",
|
| 56 |
+
"act_short": "Plant Protection Regs",
|
| 57 |
+
"act_name": "Plant Protection Regulations",
|
| 58 |
+
"section": "4",
|
| 59 |
+
"marginal_note": "",
|
| 60 |
+
"part": "PART I - General",
|
| 61 |
+
"division": "",
|
| 62 |
+
"heading": "Shipment of Pests",
|
| 63 |
+
"text": "4 For the purposes of section 5 of the Act, the specimen of a suspected pest that is to be provided to the Minister shall be treated, packaged, contained and moved in such a manner as to prevent the suspected pest from escaping.",
|
| 64 |
+
"history": "",
|
| 65 |
+
"last_amended": "2006-03-22",
|
| 66 |
+
"current_to": "2025-11-27",
|
| 67 |
+
"citation": "Plant Protection Regs, s. 4",
|
| 68 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-95-212/section-4.html"
|
| 69 |
+
},
|
| 70 |
+
{
|
| 71 |
+
"id": "SOR-95-212-s5",
|
| 72 |
+
"act_code": "SOR-95-212",
|
| 73 |
+
"act_short": "Plant Protection Regs",
|
| 74 |
+
"act_name": "Plant Protection Regulations",
|
| 75 |
+
"section": "5",
|
| 76 |
+
"marginal_note": "",
|
| 77 |
+
"part": "PART I - General",
|
| 78 |
+
"division": "",
|
| 79 |
+
"heading": "Activities Referred to in Subsection 6(1) of the Act",
|
| 80 |
+
"text": "5\n(1) For the purposes of subsection 6(1) of the Act, a person may undertake any activity referred to in that subsection in respect of a thing that is a pest, is or could be infested or is or could constitute a biological obstacle to the control of a pest if\n(a) the Minister or an inspector determines that the activity is for the purpose of scientific research, educational, processing, industrial or exhibition purposes;\n(b) the person obtains a written authorization issued by the Minister or an inspector in accordance with subsection (2);\n(c) the thing is packaged, transported, handled, controlled and used in a manner that ensures a pest or biological obstacle to the control of a pest is not spread within or from Canada;\n(d) the thing is moved in accordance with the requirements of Part III; and\n(e) where the thing or any remains of the thing or portion thereof is to be disposed of, the owner or the person having the possession, care or control of the thing, remains or portion thereof disposes of it in a manner that\n(i) ensures that a pest or biological obstacle to the control of a pest will not spread, and\n(ii) destroys any pest or biological obstacle to the control of a pest or ensures that the pest or biological obstacle to the control of a pest is non-viable.\n(2) Subject to paragraph (1)(a), the Minister or an inspector shall issue a written authorization in respect of any activity referred to in subsection 6(1) of the Act where the Minister or an inspector determines that the person is able and willing to comply with paragraphs (1)(c), (d) and (e) and with the conditions set out in the authorization and will take every precaution to prevent the spread of any pest or biological obstacle to the control of a pest.\n(3) A written authorization referred to in subsection (2) may set out the conditions under which any activity referred to in subsection 6(1) of the Act may be undertaken in respect of the thing to prevent the spread within or from Canada of a pest or a biological obstacle to the control of a pest.\n(4) A person who obtains a written authorization referred to in subsection (2) shall comply with all the conditions set out in the authorization.\n(5) Subject to section 21, a person is not required to obtain a written authorization referred to in paragraph (1)(b) of these Regulations or in subsection 6(2) of the Act where the person is acting for or on behalf of Her Majesty in right of Canada and\n(a) is acting for any of the purposes set out in section 2 of the Act or in respect to the application of the Act or any regulation or order made thereunder; or\n(b) is moving a thing for the purpose of administering any other Act.",
|
| 81 |
+
"history": "SOR/2002-438, s. 19(F)",
|
| 82 |
+
"last_amended": "2006-03-22",
|
| 83 |
+
"current_to": "2025-11-27",
|
| 84 |
+
"citation": "Plant Protection Regs, s. 5",
|
| 85 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-95-212/section-5.html"
|
| 86 |
+
},
|
| 87 |
+
{
|
| 88 |
+
"id": "SOR-95-212-s6",
|
| 89 |
+
"act_code": "SOR-95-212",
|
| 90 |
+
"act_short": "Plant Protection Regs",
|
| 91 |
+
"act_name": "Plant Protection Regulations",
|
| 92 |
+
"section": "6",
|
| 93 |
+
"marginal_note": "",
|
| 94 |
+
"part": "PART I - General",
|
| 95 |
+
"division": "",
|
| 96 |
+
"heading": "Seals",
|
| 97 |
+
"text": "6\n(1) An inspector or a peace officer acting on the request of an inspector may affix a seal to a conveyance or any other thing.\n(2) Each seal shall bear a number and the inscription “CANADA — C.F.I.A./A.C.I.A.”.\n(3) No person, other than an inspector or a person authorized in writing by an inspector, shall have a seal bearing the information referred to in subsection (2) or any facsimile thereof in the person’s possession, custody or control.",
|
| 98 |
+
"history": "SOR/2000-184, s. 81",
|
| 99 |
+
"last_amended": "2006-03-22",
|
| 100 |
+
"current_to": "2025-11-27",
|
| 101 |
+
"citation": "Plant Protection Regs, s. 6",
|
| 102 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-95-212/section-6.html"
|
| 103 |
+
},
|
| 104 |
+
{
|
| 105 |
+
"id": "SOR-95-212-s7",
|
| 106 |
+
"act_code": "SOR-95-212",
|
| 107 |
+
"act_short": "Plant Protection Regs",
|
| 108 |
+
"act_name": "Plant Protection Regulations",
|
| 109 |
+
"section": "7",
|
| 110 |
+
"marginal_note": "",
|
| 111 |
+
"part": "PART I - General",
|
| 112 |
+
"division": "",
|
| 113 |
+
"heading": "Seals",
|
| 114 |
+
"text": "7\n(1) Except as authorized by an inspector pursuant to subsection (2), no person, other than an inspector, shall remove, break, tamper with or alter a seal.\n(2) Where it would be impracticable for an inspector to remove or break a seal, any inspector may authorize any person in writing to do so on the inspector’s behalf.\n(3) An owner or a person having the possession, care or control of a conveyance or any other thing on which a seal is affixed, shall ensure that the seal is not removed, broken, tampered with or altered except in accordance with this section.",
|
| 115 |
+
"history": "",
|
| 116 |
+
"last_amended": "2006-03-22",
|
| 117 |
+
"current_to": "2025-11-27",
|
| 118 |
+
"citation": "Plant Protection Regs, s. 7",
|
| 119 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-95-212/section-7.html"
|
| 120 |
+
},
|
| 121 |
+
{
|
| 122 |
+
"id": "SOR-95-212-s8",
|
| 123 |
+
"act_code": "SOR-95-212",
|
| 124 |
+
"act_short": "Plant Protection Regs",
|
| 125 |
+
"act_name": "Plant Protection Regulations",
|
| 126 |
+
"section": "8",
|
| 127 |
+
"marginal_note": "",
|
| 128 |
+
"part": "PART I - General",
|
| 129 |
+
"division": "",
|
| 130 |
+
"heading": "Documents",
|
| 131 |
+
"text": "8 [Repealed, SOR/2017-94, s. 15]",
|
| 132 |
+
"history": "",
|
| 133 |
+
"last_amended": "2017-05-19",
|
| 134 |
+
"current_to": "2025-11-27",
|
| 135 |
+
"citation": "Plant Protection Regs, s. 8",
|
| 136 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-95-212/section-8.html"
|
| 137 |
+
},
|
| 138 |
+
{
|
| 139 |
+
"id": "SOR-95-212-s9",
|
| 140 |
+
"act_code": "SOR-95-212",
|
| 141 |
+
"act_short": "Plant Protection Regs",
|
| 142 |
+
"act_name": "Plant Protection Regulations",
|
| 143 |
+
"section": "9",
|
| 144 |
+
"marginal_note": "",
|
| 145 |
+
"part": "PART I - General",
|
| 146 |
+
"division": "",
|
| 147 |
+
"heading": "Documents",
|
| 148 |
+
"text": "9 [Repealed, SOR/2017-94, s. 15]",
|
| 149 |
+
"history": "",
|
| 150 |
+
"last_amended": "2017-05-19",
|
| 151 |
+
"current_to": "2025-11-27",
|
| 152 |
+
"citation": "Plant Protection Regs, s. 9",
|
| 153 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-95-212/section-9.html"
|
| 154 |
+
},
|
| 155 |
+
{
|
| 156 |
+
"id": "SOR-95-212-s10",
|
| 157 |
+
"act_code": "SOR-95-212",
|
| 158 |
+
"act_short": "Plant Protection Regs",
|
| 159 |
+
"act_name": "Plant Protection Regulations",
|
| 160 |
+
"section": "10",
|
| 161 |
+
"marginal_note": "",
|
| 162 |
+
"part": "PART I - General",
|
| 163 |
+
"division": "",
|
| 164 |
+
"heading": "Documents",
|
| 165 |
+
"text": "10\n(1) The Minister may publish a notice setting out the manner in which any document that is required to be provided to the Minister or to an inspector under the Act or under any regulation or order made under the Act is to be prepared and provided.\n(2) A document referred to in subsection (1) must be prepared and provided in the manner set out in the notice, unless the provision of the document is required by an inspector who specifies a different manner.\n(3) If a document referred to in subsection (1) that is provided to the Minister or an inspector is not the original of the document, the original must, if requested, be provided within a reasonable period.",
|
| 166 |
+
"history": "SOR/2007-48, s. 1; SOR/2025-236, s. 3",
|
| 167 |
+
"last_amended": "2025-11-21",
|
| 168 |
+
"current_to": "2025-11-27",
|
| 169 |
+
"citation": "Plant Protection Regs, s. 10",
|
| 170 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-95-212/section-10.html"
|
| 171 |
+
},
|
| 172 |
+
{
|
| 173 |
+
"id": "SOR-95-212-s11",
|
| 174 |
+
"act_code": "SOR-95-212",
|
| 175 |
+
"act_short": "Plant Protection Regs",
|
| 176 |
+
"act_name": "Plant Protection Regulations",
|
| 177 |
+
"section": "11",
|
| 178 |
+
"marginal_note": "",
|
| 179 |
+
"part": "PART I - General",
|
| 180 |
+
"division": "",
|
| 181 |
+
"heading": "Quarantine",
|
| 182 |
+
"text": "11\n(1) Where the Minister or an inspector believes on reasonable grounds that a thing is a pest or that a period is required to determine if a thing is a pest, is or could be infested or constitutes or could constitute a biological obstacle to the control of a pest, any inspector may require that the thing be quarantined.\n(2) Where an inspector quarantines a thing, any inspector may specify in writing the period of the quarantine and the conditions necessary for the purpose of detecting a pest or biological obstacle to the control of a pest or preventing or controlling the spread of a pest or biological obstacle to the control of a pest.",
|
| 183 |
+
"history": "SOR/2009-326, s. 3(F)",
|
| 184 |
+
"last_amended": "2009-12-10",
|
| 185 |
+
"current_to": "2025-11-27",
|
| 186 |
+
"citation": "Plant Protection Regs, s. 11",
|
| 187 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-95-212/section-11.html"
|
| 188 |
+
},
|
| 189 |
+
{
|
| 190 |
+
"id": "SOR-95-212-s12",
|
| 191 |
+
"act_code": "SOR-95-212",
|
| 192 |
+
"act_short": "Plant Protection Regs",
|
| 193 |
+
"act_name": "Plant Protection Regulations",
|
| 194 |
+
"section": "12",
|
| 195 |
+
"marginal_note": "",
|
| 196 |
+
"part": "PART I - General",
|
| 197 |
+
"division": "",
|
| 198 |
+
"heading": "Quarantine",
|
| 199 |
+
"text": "12\n(1) Where a thing is quarantined,\n(a) an inspector shall send or personally deliver a notice of quarantine to the owner or person having the possession, care or control of the thing, unless it is specified in a permit that the thing is to be quarantined; and\n(b) any inspector may attach a quarantine tag to the thing or its container.\n(2) A quarantine tag, if any, shall bear the same quarantine number as the notice of quarantine or, where specified in the permit that a thing be quarantined, the quarantine tag shall bear the permit number.",
|
| 200 |
+
"history": "",
|
| 201 |
+
"last_amended": "2006-03-22",
|
| 202 |
+
"current_to": "2025-11-27",
|
| 203 |
+
"citation": "Plant Protection Regs, s. 12",
|
| 204 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-95-212/section-12.html"
|
| 205 |
+
},
|
| 206 |
+
{
|
| 207 |
+
"id": "SOR-95-212-s13",
|
| 208 |
+
"act_code": "SOR-95-212",
|
| 209 |
+
"act_short": "Plant Protection Regs",
|
| 210 |
+
"act_name": "Plant Protection Regulations",
|
| 211 |
+
"section": "13",
|
| 212 |
+
"marginal_note": "",
|
| 213 |
+
"part": "PART I - General",
|
| 214 |
+
"division": "",
|
| 215 |
+
"heading": "Quarantine",
|
| 216 |
+
"text": "13\n(1) Except as authorized by an inspector pursuant to subsection (2), no person, other than an inspector, shall\n(a) alter, deface or erase any information on a notice of quarantine or a quarantine tag; or\n(b) remove a quarantine tag.\n(2) Where it would be impracticable for an inspector to remove a quarantine tag, any inspector may authorize a person in writing to do so on the inspector’s behalf.",
|
| 217 |
+
"history": "",
|
| 218 |
+
"last_amended": "2006-03-22",
|
| 219 |
+
"current_to": "2025-11-27",
|
| 220 |
+
"citation": "Plant Protection Regs, s. 13",
|
| 221 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-95-212/section-13.html"
|
| 222 |
+
},
|
| 223 |
+
{
|
| 224 |
+
"id": "SOR-95-212-s14",
|
| 225 |
+
"act_code": "SOR-95-212",
|
| 226 |
+
"act_short": "Plant Protection Regs",
|
| 227 |
+
"act_name": "Plant Protection Regulations",
|
| 228 |
+
"section": "14",
|
| 229 |
+
"marginal_note": "",
|
| 230 |
+
"part": "PART I - General",
|
| 231 |
+
"division": "",
|
| 232 |
+
"heading": "Quarantine",
|
| 233 |
+
"text": "14\n(1) Subject to subsection (2), where an inspector has quarantined a thing, no person shall undertake any activity in respect of the thing except in accordance with the conditions, and for the period, specified pursuant to subsection 11(2).\n(2) Any inspector may authorize an activity in respect of a thing referred to in subsection (1) where the activity is necessary in order to carry out the quarantine or would not adversely affect the quarantine.",
|
| 234 |
+
"history": "",
|
| 235 |
+
"last_amended": "2006-03-22",
|
| 236 |
+
"current_to": "2025-11-27",
|
| 237 |
+
"citation": "Plant Protection Regs, s. 14",
|
| 238 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-95-212/section-14.html"
|
| 239 |
+
},
|
| 240 |
+
{
|
| 241 |
+
"id": "SOR-95-212-s15",
|
| 242 |
+
"act_code": "SOR-95-212",
|
| 243 |
+
"act_short": "Plant Protection Regs",
|
| 244 |
+
"act_name": "Plant Protection Regulations",
|
| 245 |
+
"section": "15",
|
| 246 |
+
"marginal_note": "",
|
| 247 |
+
"part": "PART I - General",
|
| 248 |
+
"division": "",
|
| 249 |
+
"heading": "Quarantine",
|
| 250 |
+
"text": "15\n(1) An inspector shall release from quarantine a thing or portion of the thing where an inspector determines that\n(a) the thing or portion is not a pest, or is not or could not be infested;\n(b) the thing or portion does not or could not constitute a biological obstacle to the control of a pest;\n(c) the pest has been eradicated from the thing or portion; or\n(d) the thing or portion no longer constitutes a biological obstacle to the control of a pest.\n(2) Where an inspector releases a thing or a portion of the thing from quarantine, an inspector shall send or personally deliver a notice of release from quarantine to the owner or person having the possession, care or control of the thing.",
|
| 251 |
+
"history": "",
|
| 252 |
+
"last_amended": "2006-03-22",
|
| 253 |
+
"current_to": "2025-11-27",
|
| 254 |
+
"citation": "Plant Protection Regs, s. 15",
|
| 255 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-95-212/section-15.html"
|
| 256 |
+
},
|
| 257 |
+
{
|
| 258 |
+
"id": "SOR-95-212-s16",
|
| 259 |
+
"act_code": "SOR-95-212",
|
| 260 |
+
"act_short": "Plant Protection Regs",
|
| 261 |
+
"act_name": "Plant Protection Regulations",
|
| 262 |
+
"section": "16",
|
| 263 |
+
"marginal_note": "",
|
| 264 |
+
"part": "PART I - General",
|
| 265 |
+
"division": "",
|
| 266 |
+
"heading": "Investigation or Survey of a Thing or Place",
|
| 267 |
+
"text": "16\n(1) An inspector may conduct an investigation or survey of a place or any thing in that place in order to detect pests or biological obstacles to the control of pests and to identify areas in which a pest or biological obstacle to the control of a pest is or could be found.\n(2) Where, as a result of an investigation or a survey conducted by any inspector or any other person, the Minister or an inspector has reasonable grounds to believe that a pest or biological obstacle to the control of a pest has been detected and an area in which the pest or biological obstacle is or could be found has been identified,\n(a) the Minister or any inspector may describe the area by reference to a map or plan that is publicly available, or by reference to any farm, county, district, municipality, province or any part thereof; and\n(b) the Minister shall take all necessary steps as may be practicable in the circumstances to bring any information relevant to the pest or biological obstacle and the area to the notice of persons likely to be affected by the pest or biological obstacle.",
|
| 268 |
+
"history": "SOR/2017-94, s. 16",
|
| 269 |
+
"last_amended": "2017-05-19",
|
| 270 |
+
"current_to": "2025-11-27",
|
| 271 |
+
"citation": "Plant Protection Regs, s. 16",
|
| 272 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-95-212/section-16.html"
|
| 273 |
+
},
|
| 274 |
+
{
|
| 275 |
+
"id": "SOR-95-212-s17",
|
| 276 |
+
"act_code": "SOR-95-212",
|
| 277 |
+
"act_short": "Plant Protection Regs",
|
| 278 |
+
"act_name": "Plant Protection Regulations",
|
| 279 |
+
"section": "17",
|
| 280 |
+
"marginal_note": "",
|
| 281 |
+
"part": "PART I - General",
|
| 282 |
+
"division": "",
|
| 283 |
+
"heading": "Treatment or Processing of a Thing or Place",
|
| 284 |
+
"text": "17\n(1) Where the Minister or an inspector believes on reasonable grounds that a thing is a pest, or a thing or place is or could be infested or constitutes or could constitute a biological obstacle to the control of a pest, any inspector may, in order to eradicate, or prevent the spread of, the pest or biological obstacle, decide that the thing or place shall be treated or processed and may determine the treatment or process and manner of treatment or processing.\n(2) Where, pursuant to subsection (1), an inspector decides that a thing or place shall be treated or processed, any inspector may\n(a) treat or process it or cause it to be treated or processed; or\n(b) require the owner or the person having the possession, care or control of the thing or place to treat or process it or cause it to be treated or processed.\n(3) A requirement made pursuant to paragraph (2)(b) shall be communicated by sending or personally delivering a notice in writing to the owner or other person, and the notice may specify the treatment or process, manner of treatment or processing or the date by which the treatment or processing shall be completed.\n(4) An owner or other person who receives a notice referred to in subsection (3) shall ensure that\n(a) the treatment or process is carried out in accordance with the notice and any other instructions issued by an inspector in respect of the treatment or process or manner of treatment or processing of the thing or place; and\n(b) the pest or biological obstacle to the control of a pest is eradicated and the spread of the pest or biological obstacle is prevented.",
|
| 285 |
+
"history": "",
|
| 286 |
+
"last_amended": "2006-03-22",
|
| 287 |
+
"current_to": "2025-11-27",
|
| 288 |
+
"citation": "Plant Protection Regs, s. 17",
|
| 289 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-95-212/section-17.html"
|
| 290 |
+
},
|
| 291 |
+
{
|
| 292 |
+
"id": "SOR-95-212-s18",
|
| 293 |
+
"act_code": "SOR-95-212",
|
| 294 |
+
"act_short": "Plant Protection Regs",
|
| 295 |
+
"act_name": "Plant Protection Regulations",
|
| 296 |
+
"section": "18",
|
| 297 |
+
"marginal_note": "",
|
| 298 |
+
"part": "PART I - General",
|
| 299 |
+
"division": "",
|
| 300 |
+
"heading": "Treatment or Processing of a Thing or Place after Detention, Confiscation, Forfeiture or Quarantine",
|
| 301 |
+
"text": "18\n(1) Where, pursuant to section 27, 33 or 35 of the Act, a thing is detained, forfeited or confiscated or where, under these Regulations, a thing is quarantined, an inspector may require the owner or person having the possession, care or control of any thing or place in or on which the thing was contained, detained, forfeited, confiscated, or quarantined to treat or process, or cause to be treated or processed, that thing or place.\n(2) Subsections 17(3) and (4) apply, with such modifications as the circumstances require, where, pursuant to subsection (1), an inspector requires that a thing or place be treated or processed.",
|
| 302 |
+
"history": "",
|
| 303 |
+
"last_amended": "2006-03-22",
|
| 304 |
+
"current_to": "2025-11-27",
|
| 305 |
+
"citation": "Plant Protection Regs, s. 18",
|
| 306 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-95-212/section-18.html"
|
| 307 |
+
},
|
| 308 |
+
{
|
| 309 |
+
"id": "SOR-95-212-s19",
|
| 310 |
+
"act_code": "SOR-95-212",
|
| 311 |
+
"act_short": "Plant Protection Regs",
|
| 312 |
+
"act_name": "Plant Protection Regulations",
|
| 313 |
+
"section": "19",
|
| 314 |
+
"marginal_note": "",
|
| 315 |
+
"part": "PART I - General",
|
| 316 |
+
"division": "",
|
| 317 |
+
"heading": "Removal of Persons or Things that Interfere with Treatment",
|
| 318 |
+
"text": "19 Where a person or thing in any place presents an obstacle to a treatment required under the Act or any regulation or order made thereunder, or may be adversely affected by that treatment, an inspector may orally or in writing require the removal of the person or thing from the place, and the person or the owner or person having the possession, care or control of the thing shall comply forthwith.",
|
| 319 |
+
"history": "",
|
| 320 |
+
"last_amended": "2006-03-22",
|
| 321 |
+
"current_to": "2025-11-27",
|
| 322 |
+
"citation": "Plant Protection Regs, s. 19",
|
| 323 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-95-212/section-19.html"
|
| 324 |
+
},
|
| 325 |
+
{
|
| 326 |
+
"id": "SOR-95-212-s20",
|
| 327 |
+
"act_code": "SOR-95-212",
|
| 328 |
+
"act_short": "Plant Protection Regs",
|
| 329 |
+
"act_name": "Plant Protection Regulations",
|
| 330 |
+
"section": "20",
|
| 331 |
+
"marginal_note": "",
|
| 332 |
+
"part": "PART I - General",
|
| 333 |
+
"division": "",
|
| 334 |
+
"heading": "Prohibiting or Restricting the Use of a Place",
|
| 335 |
+
"text": "20\n(1) Where an inspector has reasonable grounds to believe that a place is infested, the inspector may prohibit or restrict the use of the place.\n(2) A prohibition or restriction under subsection (1) shall be communicated by sending or personally delivering a written notice to the occupier or owner of the place or, where the inspector cannot, after the exercise of due diligence, find the occupier or owner, by posting the notice at the place in question.\n(3) A prohibition or restriction under subsection (1) takes effect immediately on the communication or posting of the notice and continues during the period specified in the notice or, where no period is specified, indefinitely.",
|
| 336 |
+
"history": "SOR/2009-326, s. 4; SOR/2017-94, s. 17",
|
| 337 |
+
"last_amended": "2017-05-19",
|
| 338 |
+
"current_to": "2025-11-27",
|
| 339 |
+
"citation": "Plant Protection Regs, s. 20",
|
| 340 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-95-212/section-20.html"
|
| 341 |
+
},
|
| 342 |
+
{
|
| 343 |
+
"id": "SOR-95-212-s21",
|
| 344 |
+
"act_code": "SOR-95-212",
|
| 345 |
+
"act_short": "Plant Protection Regs",
|
| 346 |
+
"act_name": "Plant Protection Regulations",
|
| 347 |
+
"section": "21",
|
| 348 |
+
"marginal_note": "",
|
| 349 |
+
"part": "PART I - General",
|
| 350 |
+
"division": "",
|
| 351 |
+
"heading": "Prohibiting or Restricting Activities",
|
| 352 |
+
"text": "21\n(1) Where an inspector has reasonable grounds to believe that a thing is a pest, is infested with a pest or constitutes a biological obstacle to the control of a pest, the inspector may, in writing, for the purpose of detecting, eradicating or preventing the spread of the pest or biological obstacle,\n(a) prohibit or restrict any activity in respect of the thing indefinitely or during a specified period; and\n(b) specify conditions respecting the prohibition or restriction.\n(2) A prohibition or restriction referred to in subsection (1) shall be communicated by sending or personally delivering a written notice to the owner or person having the possession, care or control of the thing or, where an inspector cannot, after the exercise of due diligence, find the owner or that other person, by posting the notice on the thing.\n(3) A prohibition or restriction under subsection (1) takes effect immediately on the communication or posting of the notice and continues during the period specified in the notice or, where no period is specified, indefinitely.",
|
| 353 |
+
"history": "SOR/2009-326, s. 5; SOR/2017-94, s. 17",
|
| 354 |
+
"last_amended": "2017-05-19",
|
| 355 |
+
"current_to": "2025-11-27",
|
| 356 |
+
"citation": "Plant Protection Regs, s. 21",
|
| 357 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-95-212/section-21.html"
|
| 358 |
+
},
|
| 359 |
+
{
|
| 360 |
+
"id": "SOR-95-212-s22",
|
| 361 |
+
"act_code": "SOR-95-212",
|
| 362 |
+
"act_short": "Plant Protection Regs",
|
| 363 |
+
"act_name": "Plant Protection Regulations",
|
| 364 |
+
"section": "22",
|
| 365 |
+
"marginal_note": "",
|
| 366 |
+
"part": "PART I - General",
|
| 367 |
+
"division": "",
|
| 368 |
+
"heading": "Controlling the Movement of Persons or Things",
|
| 369 |
+
"text": "22 Where, pursuant to subsection 13(1) of the Act or paragraph 15(3)(d) of the Act, the Minister or an inspector has prohibited or restricted the movement of persons or things within, into or out of any place that has been declared infested, no person shall, except as authorized by an inspector and, in the case of an order made pursuant to paragraph 15(3)(d) of the Act, except in accordance with the prohibition or restriction set out in the order,\n(a) enter, move within or leave the place; or\n(b) move any thing.",
|
| 370 |
+
"history": "",
|
| 371 |
+
"last_amended": "2006-03-22",
|
| 372 |
+
"current_to": "2025-11-27",
|
| 373 |
+
"citation": "Plant Protection Regs, s. 22",
|
| 374 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-95-212/section-22.html"
|
| 375 |
+
},
|
| 376 |
+
{
|
| 377 |
+
"id": "SOR-95-212-s23",
|
| 378 |
+
"act_code": "SOR-95-212",
|
| 379 |
+
"act_short": "Plant Protection Regs",
|
| 380 |
+
"act_name": "Plant Protection Regulations",
|
| 381 |
+
"section": "23",
|
| 382 |
+
"marginal_note": "",
|
| 383 |
+
"part": "PART I - General",
|
| 384 |
+
"division": "",
|
| 385 |
+
"heading": "Controlling the Movement of Persons or Things",
|
| 386 |
+
"text": "23 For the purposes of section 22, an inspector or a peace officer acting on the request of an inspector may\n(a) control the movement of any person within or about to enter or leave a place that has been declared infested; or\n(b) issue a written notice directing the movement of any thing to a specified place for the purpose of complying with the Act or any regulation or order made thereunder.",
|
| 387 |
+
"history": "",
|
| 388 |
+
"last_amended": "2006-03-22",
|
| 389 |
+
"current_to": "2025-11-27",
|
| 390 |
+
"citation": "Plant Protection Regs, s. 23",
|
| 391 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-95-212/section-23.html"
|
| 392 |
+
},
|
| 393 |
+
{
|
| 394 |
+
"id": "SOR-95-212-s24",
|
| 395 |
+
"act_code": "SOR-95-212",
|
| 396 |
+
"act_short": "Plant Protection Regs",
|
| 397 |
+
"act_name": "Plant Protection Regulations",
|
| 398 |
+
"section": "24",
|
| 399 |
+
"marginal_note": "",
|
| 400 |
+
"part": "PART I - General",
|
| 401 |
+
"division": "",
|
| 402 |
+
"heading": "Seizure and Detention",
|
| 403 |
+
"text": "24\n(1) Where an inspector seizes and detains any thing under section 27 of the Act,\n(a) an inspector shall send or personally deliver a notice of detention to the owner or person having the possession, care or control of the thing; and\n(b) any inspector may attach a detention tag to the thing or its container.\n(2) A detention tag, if any, shall bear the same detention number as the notice of detention.",
|
| 404 |
+
"history": "SOR/2009-326, s. 6(F)",
|
| 405 |
+
"last_amended": "2009-12-10",
|
| 406 |
+
"current_to": "2025-11-27",
|
| 407 |
+
"citation": "Plant Protection Regs, s. 24",
|
| 408 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-95-212/section-24.html"
|
| 409 |
+
},
|
| 410 |
+
{
|
| 411 |
+
"id": "SOR-95-212-s25",
|
| 412 |
+
"act_code": "SOR-95-212",
|
| 413 |
+
"act_short": "Plant Protection Regs",
|
| 414 |
+
"act_name": "Plant Protection Regulations",
|
| 415 |
+
"section": "25",
|
| 416 |
+
"marginal_note": "",
|
| 417 |
+
"part": "PART I - General",
|
| 418 |
+
"division": "",
|
| 419 |
+
"heading": "Seizure and Detention",
|
| 420 |
+
"text": "25\n(1) Except as authorized by an inspector pursuant to subsection (2) or (3), no person, other than an inspector, shall\n(a) alter, deface or erase any information on a notice of detention or a detention tag;\n(b) remove a detention tag; or\n(c) undertake any activity in respect of a thing that is detained.\n(2) Where it would be impracticable for an inspector to remove a detention tag, any inspector may authorize a person in writing to do so on the inspector’s behalf.\n(3) An inspector may authorize an activity referred to in paragraph (1)(c) where the activity is necessary in order to detect, eradicate, or prevent the spread of a pest or biological obstacle to the control of a pest.",
|
| 421 |
+
"history": "",
|
| 422 |
+
"last_amended": "2006-03-22",
|
| 423 |
+
"current_to": "2025-11-27",
|
| 424 |
+
"citation": "Plant Protection Regs, s. 25",
|
| 425 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-95-212/section-25.html"
|
| 426 |
+
},
|
| 427 |
+
{
|
| 428 |
+
"id": "SOR-95-212-s26",
|
| 429 |
+
"act_code": "SOR-95-212",
|
| 430 |
+
"act_short": "Plant Protection Regs",
|
| 431 |
+
"act_name": "Plant Protection Regulations",
|
| 432 |
+
"section": "26",
|
| 433 |
+
"marginal_note": "",
|
| 434 |
+
"part": "PART I - General",
|
| 435 |
+
"division": "",
|
| 436 |
+
"heading": "Seizure and Detention",
|
| 437 |
+
"text": "26\n(1) Where, in accordance with subsection 32(1) of the Act, a thing or any proceeds realized from its disposition may no longer be detained, an inspector shall release the thing or proceeds from detention and send or personally deliver a notice of release from detention to the owner or person having the possession, care or control of the thing.\n(2) [Repealed, SOR/2017-94, s. 18]",
|
| 438 |
+
"history": "SOR/2017-94, s. 18",
|
| 439 |
+
"last_amended": "2017-05-19",
|
| 440 |
+
"current_to": "2025-11-27",
|
| 441 |
+
"citation": "Plant Protection Regs, s. 26",
|
| 442 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-95-212/section-26.html"
|
| 443 |
+
},
|
| 444 |
+
{
|
| 445 |
+
"id": "SOR-95-212-s27",
|
| 446 |
+
"act_code": "SOR-95-212",
|
| 447 |
+
"act_short": "Plant Protection Regs",
|
| 448 |
+
"act_name": "Plant Protection Regulations",
|
| 449 |
+
"section": "27",
|
| 450 |
+
"marginal_note": "",
|
| 451 |
+
"part": "PART I - General",
|
| 452 |
+
"division": "",
|
| 453 |
+
"heading": "Disposition",
|
| 454 |
+
"text": "27\n(1) Where the Minister or an inspector believes on reasonable grounds that a thing is a pest, is or could be infested or constitutes or could constitute a biological obstacle to the control of a pest, any inspector may require the owner or person having the possession, care or control of the thing to dispose of it.\n(2) A requirement under subsection (1) shall be communicated by sending or personally delivering a notice in writing to the owner or other person, and the notice shall specify the manner of disposition and may specify the place of disposition and the date by which the disposition shall be completed.\n(3) Where, pursuant to subsection (1), an inspector requires that a thing be disposed of, any inspector may also require the owner or person having the possession, care or control of the thing to treat or cause to be treated any place or thing in or on which the thing to be disposed of was placed, contained, stored, detained or quarantined.\n(4) Subsections 17(3) and (4) apply, with such modifications as the circumstances require, where, pursuant to subsection (3), an inspector requires that a place or thing be treated.\n(5) Where, pursuant to subsection (1), an inspector requires that a thing be disposed of, no person shall undertake any other activity in respect of the thing without the approval of an inspector.",
|
| 455 |
+
"history": "",
|
| 456 |
+
"last_amended": "2006-03-22",
|
| 457 |
+
"current_to": "2025-11-27",
|
| 458 |
+
"citation": "Plant Protection Regs, s. 27",
|
| 459 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-95-212/section-27.html"
|
| 460 |
+
},
|
| 461 |
+
{
|
| 462 |
+
"id": "SOR-95-212-s28",
|
| 463 |
+
"act_code": "SOR-95-212",
|
| 464 |
+
"act_short": "Plant Protection Regs",
|
| 465 |
+
"act_name": "Plant Protection Regulations",
|
| 466 |
+
"section": "28",
|
| 467 |
+
"marginal_note": "",
|
| 468 |
+
"part": "PART II - Importation",
|
| 469 |
+
"division": "",
|
| 470 |
+
"heading": "Interpretation",
|
| 471 |
+
"text": "28 In this Part,\nforeign Phytosanitary Certificate means a document, issued by the government of the country of origin of a thing, that attests to the phytosanitary status of the thing and that\n(a) contains the information required by the Model Phytosanitary Certificate set out in the Annex to the International Plant Protection Convention approved by the Food and Agriculture Organization of the United Nations Conference at its Twentieth Session in November 1979, as amended from time to time,\n(b) is issued within 14 days before the thing is shipped to Canada, and\n(c) is signed by an official of the country of origin who has been authorized by the government of that country to sign such certificates; (certificat phytosanitaire étranger)\nforeign Phytosanitary Certificate for Re-export means a document, issued by the government of the foreign country from which a thing is re-exported, that indicates that a thing is considered to conform with Canadian phytosanitary import requirements and that\n(a) contains the information required by the Model Phytosanitary Certificate for Re-Export set out in the Annex to the International Plant Protection Convention approved by the Food and Agriculture Organization of the United Nations Conference at its Twentieth Session in November 1979, as amended from time to time,\n(b) is issued within 14 days before the thing is shipped to Canada, and\n(c) is signed by an official of the country of re-export who has been authorized by the government of that country to sign such certificates. (certificat phytosanitaire étranger pour réexportation)",
|
| 472 |
+
"history": "",
|
| 473 |
+
"last_amended": "2006-03-22",
|
| 474 |
+
"current_to": "2025-11-27",
|
| 475 |
+
"citation": "Plant Protection Regs, s. 28",
|
| 476 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-95-212/section-28.html"
|
| 477 |
+
},
|
| 478 |
+
{
|
| 479 |
+
"id": "SOR-95-212-s29",
|
| 480 |
+
"act_code": "SOR-95-212",
|
| 481 |
+
"act_short": "Plant Protection Regs",
|
| 482 |
+
"act_name": "Plant Protection Regulations",
|
| 483 |
+
"section": "29",
|
| 484 |
+
"marginal_note": "",
|
| 485 |
+
"part": "PART II - Importation",
|
| 486 |
+
"division": "",
|
| 487 |
+
"heading": "Importation Requirements",
|
| 488 |
+
"text": "29\n(1) Subject to subsections (1.1) to (5) and the conditions set out in sections 38 to 44, no person shall import into Canada any thing that is a pest, is or could be infested or constitutes or could constitute a biological obstacle to the control of a pest, unless the person has obtained and furnished to an inspector a valid permit number and, as applicable, a foreign Phytosanitary Certificate or a foreign Phytosanitary Certificate for Re-export.\n(1.1) A person may furnish to the inspector the number of the applicable certificate referred to in subsection (1) instead of the certificate itself if the number is sufficient to give the Minister electronic access to the certificate.\n(2) Subject to subsections (3) and (4), a person may import a thing referred to in subsection (1) without a permit where the Minister determines, on the basis of a pest risk assessment,\n(a) that the thing is not a pest, is not or is not suspected of being infested or does not or could not constitute a biological obstacle to the control of a pest, and that the thing originates from an area free from pests listed in the List of Pests Regulated by Canada, published by the Agency, as amended from time to time; or\n(b) where the thing is a pest, is or could be infested or constitutes or could constitute a biological obstacle to the control of a pest, that the thing has been treated or processed in the country or place of origin or reshipment in a manner that eliminates any pest or biological obstacle or results in any pest or biological obstacle being non-viable.\n(3) Where a thing originates from an area referred to in paragraph (2)(a), a person who imports the thing without a permit shall furnish to an inspector a document that attests to the origin of the thing.\n(4) Where a permit is not required pursuant to paragraph (2)(b), the person shall, before importation, demonstrate to the Minister or an inspector that the treatment or process of the thing has\n(a) eradicated any pest or biological obstacle to the control of a pest; or\n(b) resulted in any pest or biological obstacle to the control of a pest being non-viable.\n(5) Where a person referred to in subsection (4) does not demonstrate before importation that the treatment or process has attained a result referred to in that subsection, the person shall comply with subsection (1).\n(6) Any thing referred to in subsection (2) shall be packaged, moved, handled, controlled and used in a manner that ensures that the thing does not become a pest, infested or a biological obstacle to the control of a pest.\n(7) A person may import a thing referred to in subsection (1) without a foreign Phytosanitary Certificate or foreign Phytosanitary Certificate for Re-export where the Minister determines, on the basis of a pest risk assessment, that the thing is not a pest, is not or is not suspected of being infested or does not constitute or could not constitute a biological obstacle to the control of a pest.",
|
| 489 |
+
"history": "SOR/97-292, s. 31; SOR/2007-48, s. 2; SOR/2009-326, s. 7(F); SOR/2025-236, s. 4",
|
| 490 |
+
"last_amended": "2025-11-21",
|
| 491 |
+
"current_to": "2025-11-27",
|
| 492 |
+
"citation": "Plant Protection Regs, s. 29",
|
| 493 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-95-212/section-29.html"
|
| 494 |
+
},
|
| 495 |
+
{
|
| 496 |
+
"id": "SOR-95-212-s30",
|
| 497 |
+
"act_code": "SOR-95-212",
|
| 498 |
+
"act_short": "Plant Protection Regs",
|
| 499 |
+
"act_name": "Plant Protection Regulations",
|
| 500 |
+
"section": "30",
|
| 501 |
+
"marginal_note": "",
|
| 502 |
+
"part": "PART II - Importation",
|
| 503 |
+
"division": "",
|
| 504 |
+
"heading": "Permit Application",
|
| 505 |
+
"text": "30 A person may apply for a permit if the person\n(a) is a Canadian citizen or permanent resident, as those terms are defined in subsection 2(1) of the Immigration Act;\n(b) is authorized under the laws of Canada to reside in Canada for a period of six months or more and will have the possession, care or control of the thing to be imported; or\n(c) in the case of a corporation with a place of business in Canada, is an agent or officer of the corporation who resides in Canada.",
|
| 506 |
+
"history": "",
|
| 507 |
+
"last_amended": "2006-03-22",
|
| 508 |
+
"current_to": "2025-11-27",
|
| 509 |
+
"citation": "Plant Protection Regs, s. 30",
|
| 510 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-95-212/section-30.html"
|
| 511 |
+
},
|
| 512 |
+
{
|
| 513 |
+
"id": "SOR-95-212-s31",
|
| 514 |
+
"act_code": "SOR-95-212",
|
| 515 |
+
"act_short": "Plant Protection Regs",
|
| 516 |
+
"act_name": "Plant Protection Regulations",
|
| 517 |
+
"section": "31",
|
| 518 |
+
"marginal_note": "",
|
| 519 |
+
"part": "PART II - Importation",
|
| 520 |
+
"division": "",
|
| 521 |
+
"heading": "Permit Application",
|
| 522 |
+
"text": "31\n(1) Subject to subsection (2), an application for a permit shall be in writing, signed and dated by the person applying for the permit and contain the following information:\n(a) the name, complete address and telephone number of the person;\n(b) the name, complete address and telephone number of the owner of the thing to be imported, if different from paragraph (a);\n(c) the name and complete address of the exporter;\n(d) a description and the common and scientific names of the thing;\n(e) the quantity of the thing;\n(f) the purpose for which the thing is to be admitted into Canada;\n(g) the place of entry and the location of the place of destination of the thing in Canada;\n(h) the means by which the thing will be transported;\n(i) the country and place where the thing was propagated or produced, and the country and place from which it was shipped to Canada;\n(j) the number of packages, if sent by mail or courier service; and\n(k) any other information respecting any activity undertaken in respect of the thing, or the precautions that will be taken to prevent the spreading of any pest or biological obstacle to the control of a pest while the thing is transported, as the Minister may require.\n(2) An application for a permit is not required to contain the information referred to in paragraphs (1)(c), (e), (g), (h) and (k) where the Minister has determined that the information is not necessary in order to assess the risk of a pest or biological obstacle to the control of a pest being introduced into Canada or being spread within Canada.\n(3) A person applying for a permit shall, if required by the Minister, furnish to the Minister, prior to the issuance of the permit,\n(a) samples of the thing to be imported, without charge to Her Majesty, for examination purposes; and\n(b) evidence that the person has adequate facilities for inspection and, if necessary, for quarantine of the thing.\n(4) The samples referred to in paragraph 3(a) may be kept by the Minister.\n(5) The Minister shall refuse to issue a permit if an application for the permit contains any false or misleading information.\n(6) Where a person obtains a permit on the basis of an application that contains false or misleading information, the permit is void from the date of its issuance.",
|
| 523 |
+
"history": "SOR/2009-326, s. 8(F)",
|
| 524 |
+
"last_amended": "2009-12-10",
|
| 525 |
+
"current_to": "2025-11-27",
|
| 526 |
+
"citation": "Plant Protection Regs, s. 31",
|
| 527 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-95-212/section-31.html"
|
| 528 |
+
},
|
| 529 |
+
{
|
| 530 |
+
"id": "SOR-95-212-s32",
|
| 531 |
+
"act_code": "SOR-95-212",
|
| 532 |
+
"act_short": "Plant Protection Regs",
|
| 533 |
+
"act_name": "Plant Protection Regulations",
|
| 534 |
+
"section": "32",
|
| 535 |
+
"marginal_note": "",
|
| 536 |
+
"part": "PART II - Importation",
|
| 537 |
+
"division": "",
|
| 538 |
+
"heading": "Permit",
|
| 539 |
+
"text": "32\n(1) Where the Minister has reasonable grounds to believe, on the basis of a pest risk assessment, that the importation of a thing will result or would likely result in the introduction into Canada, or the spread within Canada, of a thing that is a pest, is or could be infested or constitutes or could constitute a biological obstacle to the control of a pest, the Minister shall issue a permit in respect of the thing if the Minister determines that every precaution necessary to prevent the introduction into Canada or the spread within Canada of any pest or biological obstacle to the control of a pest can and will be taken.\n(2) Where the Minister has reasonable grounds to believe, on the basis of a pest risk assessment, that the requirement referred to in subsection (1) is not met, the Minister shall refuse to issue a permit.",
|
| 540 |
+
"history": "SOR/2009-326, s. 9(F)",
|
| 541 |
+
"last_amended": "2009-12-10",
|
| 542 |
+
"current_to": "2025-11-27",
|
| 543 |
+
"citation": "Plant Protection Regs, s. 32",
|
| 544 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-95-212/section-32.html"
|
| 545 |
+
},
|
| 546 |
+
{
|
| 547 |
+
"id": "SOR-95-212-s33",
|
| 548 |
+
"act_code": "SOR-95-212",
|
| 549 |
+
"act_short": "Plant Protection Regs",
|
| 550 |
+
"act_name": "Plant Protection Regulations",
|
| 551 |
+
"section": "33",
|
| 552 |
+
"marginal_note": "",
|
| 553 |
+
"part": "PART II - Importation",
|
| 554 |
+
"division": "",
|
| 555 |
+
"heading": "Permit",
|
| 556 |
+
"text": "33 A permit shall be in a form established by the Minister, and shall set out\n(a) the conditions, if any, under which the thing to be imported may be admitted into Canada and governing the thing after it has entered Canada to prevent the introduction into Canada, or the spread within Canada, of a pest or biological obstacle to the control of a pest;\n(b) the expiration date of the permit; and\n(c) such other information as is necessary to identify the thing.",
|
| 557 |
+
"history": "",
|
| 558 |
+
"last_amended": "2006-03-22",
|
| 559 |
+
"current_to": "2025-11-27",
|
| 560 |
+
"citation": "Plant Protection Regs, s. 33",
|
| 561 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-95-212/section-33.html"
|
| 562 |
+
},
|
| 563 |
+
{
|
| 564 |
+
"id": "SOR-95-212-s34",
|
| 565 |
+
"act_code": "SOR-95-212",
|
| 566 |
+
"act_short": "Plant Protection Regs",
|
| 567 |
+
"act_name": "Plant Protection Regulations",
|
| 568 |
+
"section": "34",
|
| 569 |
+
"marginal_note": "",
|
| 570 |
+
"part": "PART II - Importation",
|
| 571 |
+
"division": "",
|
| 572 |
+
"heading": "Permit",
|
| 573 |
+
"text": "34\n(1) A person who imports a thing under a permit shall comply with all the conditions set out in the permit.\n(2) Where the Minister determines that it is necessary to prevent the introduction into Canada or the spread within Canada of any pest or biological obstacle to the control of a pest, the Minister shall amend a permit by adding, removing or amending a condition or any information set out in the permit.\n(3) The Minister may revoke a permit issued to a person or refuse to issue any other permit to a person where the Minister determines that the person has not complied with\n(a) any condition set out in the permit; or\n(b) any provision of the Act or any regulation or order made thereunder.\n(c) [Repealed, SOR/2009-326, s. 10]\n(4) The Minister may revoke a permit issued to a person or refuse to issue a permit to a person where the Minister has reasonable grounds to believe that\n(a) there is an infestation in the country or place of origin of a thing or the country or place from which the thing was re-shipped; or\n(b) the person has not complied with\n(i) any condition set out in the permit, or\n(ii) any provision of the Act or any regulation or order made thereunder.\n(iii) [Repealed, SOR/2009-326, s. 10]\n(5) Where a foreign exporter has shipped to Canada any thing that is a pest, infested or a biological obstacle to the control of a pest or that contravenes any provision of the Act or any regulation or order made thereunder, the Minister may revoke a permit issued to any person, or refuse to issue a permit in respect of a thing to any person, to import from that foreign exporter or from the country or place of origin or reshipment until\n(a) the thing shipped or to be shipped is no longer a pest, infested or a biological obstacle to the control of a pest;\n(b) the phytosanitary certification authorities in the country or place of origin or reshipment have identified to the Minister the cause or source of the infestation that is the subject-matter of the contravention; and\n(c) the foreign exporter or the phytosanitary certification authorities referred to in paragraph (b) have given a written undertaking to comply with the provisions of the Act and all regulations and orders made under it.",
|
| 574 |
+
"history": "SOR/2007-48, s. 3; SOR/2009-326, s. 10",
|
| 575 |
+
"last_amended": "2009-12-10",
|
| 576 |
+
"current_to": "2025-11-27",
|
| 577 |
+
"citation": "Plant Protection Regs, s. 34",
|
| 578 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-95-212/section-34.html"
|
| 579 |
+
},
|
| 580 |
+
{
|
| 581 |
+
"id": "SOR-95-212-s35",
|
| 582 |
+
"act_code": "SOR-95-212",
|
| 583 |
+
"act_short": "Plant Protection Regs",
|
| 584 |
+
"act_name": "Plant Protection Regulations",
|
| 585 |
+
"section": "35",
|
| 586 |
+
"marginal_note": "",
|
| 587 |
+
"part": "PART II - Importation",
|
| 588 |
+
"division": "",
|
| 589 |
+
"heading": "Permit",
|
| 590 |
+
"text": "35 Subject to section 34, a permit shall remain in force for the period specified in the permit.",
|
| 591 |
+
"history": "",
|
| 592 |
+
"last_amended": "2006-03-22",
|
| 593 |
+
"current_to": "2025-11-27",
|
| 594 |
+
"citation": "Plant Protection Regs, s. 35",
|
| 595 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-95-212/section-35.html"
|
| 596 |
+
},
|
| 597 |
+
{
|
| 598 |
+
"id": "SOR-95-212-s36",
|
| 599 |
+
"act_code": "SOR-95-212",
|
| 600 |
+
"act_short": "Plant Protection Regs",
|
| 601 |
+
"act_name": "Plant Protection Regulations",
|
| 602 |
+
"section": "36",
|
| 603 |
+
"marginal_note": "",
|
| 604 |
+
"part": "PART II - Importation",
|
| 605 |
+
"division": "",
|
| 606 |
+
"heading": "Permit",
|
| 607 |
+
"text": "36 The person to whom a permit has been issued shall\n(a) where required as a condition of the permit to keep a record in a form established by the Minister and containing information respecting activities undertaken in respect of the thing, furnish the record, on request, for inspection or copying by an inspector; and\n(b) retain the record referred to in paragraph (a) for such period as may be specified in the permit.",
|
| 608 |
+
"history": "",
|
| 609 |
+
"last_amended": "2006-03-22",
|
| 610 |
+
"current_to": "2025-11-27",
|
| 611 |
+
"citation": "Plant Protection Regs, s. 36",
|
| 612 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-95-212/section-36.html"
|
| 613 |
+
},
|
| 614 |
+
{
|
| 615 |
+
"id": "SOR-95-212-s37",
|
| 616 |
+
"act_code": "SOR-95-212",
|
| 617 |
+
"act_short": "Plant Protection Regs",
|
| 618 |
+
"act_name": "Plant Protection Regulations",
|
| 619 |
+
"section": "37",
|
| 620 |
+
"marginal_note": "",
|
| 621 |
+
"part": "PART II - Importation",
|
| 622 |
+
"division": "",
|
| 623 |
+
"heading": "Permit",
|
| 624 |
+
"text": "37 Where the Minister or an inspector determines that a person to whom a permit has been issued has not complied with any condition set out in the permit or where the Minister or an inspector believes on reasonable grounds that there is an infestation in the country of origin or the country from which the thing was re-shipped, any inspector may detain or prohibit the admission into Canada of the thing in respect of which the permit was issued or may order that the thing be disposed of.",
|
| 625 |
+
"history": "",
|
| 626 |
+
"last_amended": "2006-03-22",
|
| 627 |
+
"current_to": "2025-11-27",
|
| 628 |
+
"citation": "Plant Protection Regs, s. 37",
|
| 629 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-95-212/section-37.html"
|
| 630 |
+
},
|
| 631 |
+
{
|
| 632 |
+
"id": "SOR-95-212-s38",
|
| 633 |
+
"act_code": "SOR-95-212",
|
| 634 |
+
"act_short": "Plant Protection Regs",
|
| 635 |
+
"act_name": "Plant Protection Regulations",
|
| 636 |
+
"section": "38",
|
| 637 |
+
"marginal_note": "",
|
| 638 |
+
"part": "PART II - Importation",
|
| 639 |
+
"division": "",
|
| 640 |
+
"heading": "Treatment or Processing",
|
| 641 |
+
"text": "38 No person shall import into Canada any thing that is a pest, is or could be infested or constitutes or could constitute a biological obstacle to the control of a pest, unless the thing is treated or processed\n(a) at origin in a manner that eliminates any pest or biological obstacle to the control of a pest or results in any pest or biological obstacle to the control of a pest being non-viable; or\n(b) in the manner and at the place that may be specified in a permit or as required by an inspector pursuant to section 17.",
|
| 642 |
+
"history": "",
|
| 643 |
+
"last_amended": "2006-03-22",
|
| 644 |
+
"current_to": "2025-11-27",
|
| 645 |
+
"citation": "Plant Protection Regs, s. 38",
|
| 646 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-95-212/section-38.html"
|
| 647 |
+
},
|
| 648 |
+
{
|
| 649 |
+
"id": "SOR-95-212-s39",
|
| 650 |
+
"act_code": "SOR-95-212",
|
| 651 |
+
"act_short": "Plant Protection Regs",
|
| 652 |
+
"act_name": "Plant Protection Regulations",
|
| 653 |
+
"section": "39",
|
| 654 |
+
"marginal_note": "",
|
| 655 |
+
"part": "PART II - Importation",
|
| 656 |
+
"division": "",
|
| 657 |
+
"heading": "Declaration",
|
| 658 |
+
"text": "39 Every person shall, at the time of importation into Canada of any thing that is a pest, is or could be infested or constitutes or could constitute a biological obstacle to the control of a pest, declare that thing to an inspector or customs officer at a place of entry set out in subsection 40(1).",
|
| 659 |
+
"history": "",
|
| 660 |
+
"last_amended": "2006-03-22",
|
| 661 |
+
"current_to": "2025-11-27",
|
| 662 |
+
"citation": "Plant Protection Regs, s. 39",
|
| 663 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-95-212/section-39.html"
|
| 664 |
+
},
|
| 665 |
+
{
|
| 666 |
+
"id": "SOR-95-212-s40",
|
| 667 |
+
"act_code": "SOR-95-212",
|
| 668 |
+
"act_short": "Plant Protection Regs",
|
| 669 |
+
"act_name": "Plant Protection Regulations",
|
| 670 |
+
"section": "40",
|
| 671 |
+
"marginal_note": "",
|
| 672 |
+
"part": "PART II - Importation",
|
| 673 |
+
"division": "",
|
| 674 |
+
"heading": "Places of Entry",
|
| 675 |
+
"text": "40\n(1) The Canadian customs offices and Agency offices at the following places are designated as places of entry where things shall be presented for inspection and admittance to Canada:\n(a) in Ontario,\n(i) Brampton,\n(ii) Cornwall,\n(iii) Fort Erie,\n(iv) Fort Frances,\n(v) Hamilton,\n(vi) Lansdowne,\n(vii) London,\n(viii) Niagara Falls,\n(ix) Ottawa (including Macdonald-Cartier International Airport),\n(x) Prescott,\n(xi) Rainy River,\n(xii) Sarnia,\n(xiii) Sault Ste. Marie,\n(xiv) Thunder Bay (Pigeon River),\n(xv) Toronto (Front Street, Interport Suffarence Warehouse, Midcontinent Truck Terminal, Lester B. Pearson International Airport and Suffarence Truck Terminal),\n(xvi) Welland, and\n(xvii) Windsor (Ambassador Bridge and Detroit/Windsor Tunnel);\n(b) in Quebec,\n(i) Armstrong,\n(ii) Huntingdon,\n(iii) Lacolle, route 15,\n(iv) Montreal (Place d’Youville, Dorval International Airport, Mirabel International Airport and CAN PAC International Freight Services),\n(v) Quebec City,\n(vi) Rock Island, route 55, and\n(vii) Saint-Armand-Philipsburg;\n(c) in Nova Scotia,\n(i) Halifax (Ralston Building and Halifax International Airport),\n(ii) Sydney, and\n(iii) Yarmouth;\n(d) in New Brunswick,\n(i) Bayside,\n(ii) Edmundston,\n(iii) Moncton,\n(iv) Saint John,\n(v) St. Stephen, and\n(vi) Woodstock;\n(e) in Manitoba,\n(i) Boissevain,\n(ii) Emerson,\n(iii) Gretna, and\n(iv) Winnipeg (Main Street and Winnipeg International Airport);\n(f) in British Columbia,\n(i) Huntingdon,\n(ii) Kingsgate,\n(iii) Osoyoos,\n(iv) Pacific Highway (Highway 15),\n(v) Sidney (including Victoria Airport),\n(vi) Vancouver (Customs Commercial Operations, International Marine Operations and Vancouver International Airport), and\n(vii) Victoria;\n(g) in Prince Edward Island, Charlottetown;\n(h) in Saskatchewan,\n(i) Monchy,\n(ii) North Portal,\n(iii) Regina,\n(iv) Regway, and\n(v) Saskatoon;\n(i) in Alberta,\n(i) Calgary (Calgary International Airport and Harry Hays Building),\n(ii) Coutts, and\n(iii) Edmonton (including Edmonton International Airport); and\n(j) in Newfoundland and Labrador,\n(i) Corner Brook,\n(ii) Gander (including Gander International Airport), and\n(iii) St. John’s (including St. John’s Airport).\n(2) A thing shall be presented at a place of entry set out in subsection (1) during regular working hours fixed by the Minister.\n(3) An inspector or customs officer may require in writing that any thing entering Canada be directed to another place of entry or place inside Canada, for the purpose of inspecting the thing.\n(4) Where, pursuant to subsection (3), an inspector or customs officer has required a thing to be directed to another place of entry or place inside Canada, no person shall\n(a) move the thing to any place except the place indicated; or\n(b) open any conveyance or unpack any package containing the thing, except as authorized by any inspector or customs officer.",
|
| 676 |
+
"history": "SOR/97-151, s. 29; SOR/97-292, s. 32; SOR/2013-70, s. 2",
|
| 677 |
+
"last_amended": "2013-04-18",
|
| 678 |
+
"current_to": "2025-11-27",
|
| 679 |
+
"citation": "Plant Protection Regs, s. 40",
|
| 680 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-95-212/section-40.html"
|
| 681 |
+
},
|
| 682 |
+
{
|
| 683 |
+
"id": "SOR-95-212-s41",
|
| 684 |
+
"act_code": "SOR-95-212",
|
| 685 |
+
"act_short": "Plant Protection Regs",
|
| 686 |
+
"act_name": "Plant Protection Regulations",
|
| 687 |
+
"section": "41",
|
| 688 |
+
"marginal_note": "",
|
| 689 |
+
"part": "PART II - Importation",
|
| 690 |
+
"division": "",
|
| 691 |
+
"heading": "Packaging and Labelling",
|
| 692 |
+
"text": "41\n(1) Where any thing that is a pest, is or could be infested or constitutes or could constitute a biological obstacle to the control of a pest enters Canada, its container or accompanying invoice shall bear such marks as will identify the person importing the thing, the foreign exporter, the thing and, if applicable, the permit number.\n(2) Any thing referred to in subsection (1) shall be packaged in a container in such a manner as to prevent the thing from becomming infested or spreading a pest or a biological obstacle to the control of a pest.\n(3) to (5) [Repealed, SOR/2003-6, s. 99]",
|
| 693 |
+
"history": "SOR/2003-6, s. 99",
|
| 694 |
+
"last_amended": "2006-03-22",
|
| 695 |
+
"current_to": "2025-11-27",
|
| 696 |
+
"citation": "Plant Protection Regs, s. 41",
|
| 697 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-95-212/section-41.html"
|
| 698 |
+
},
|
| 699 |
+
{
|
| 700 |
+
"id": "SOR-95-212-s42",
|
| 701 |
+
"act_code": "SOR-95-212",
|
| 702 |
+
"act_short": "Plant Protection Regs",
|
| 703 |
+
"act_name": "Plant Protection Regulations",
|
| 704 |
+
"section": "42",
|
| 705 |
+
"marginal_note": "",
|
| 706 |
+
"part": "PART II - Importation",
|
| 707 |
+
"division": "",
|
| 708 |
+
"heading": "Prohibitions",
|
| 709 |
+
"text": "42\n(1) The Minister or an inspector may prohibit a thing from entering Canada where the Minister or an inspector determines, on the basis of the type of the thing or of a known or suspected infestation at the place of propagation or production, or place from which the thing was shipped, that\n(a) the thing is a pest;\n(b) the thing is or could be infested or constitutes or could constitute a biological obstacle to the control of a pest that cannot be treated or processed to the extent necessary to ensure that the thing is not a pest or infested or is no longer a biological obstacle to the control of a pest;\n(c) a foreign Phytosanitary Certificate cannot be obtained from the country of origin or a foreign Phytosanitary Certificate for Re-export cannot be obtained from the country of re-export of the thing; or\n(d) failure to do so would or could result in the introduction into Canada, or spread within Canada, of a pest or a biological obstacle to the control of a pest.\n(2) No person shall import into Canada a thing that the Minister or an inspector has prohibited from entering Canada in writing, or in a permit where the permit prohibits the importation of that thing.",
|
| 710 |
+
"history": "",
|
| 711 |
+
"last_amended": "2006-03-22",
|
| 712 |
+
"current_to": "2025-11-27",
|
| 713 |
+
"citation": "Plant Protection Regs, s. 42",
|
| 714 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-95-212/section-42.html"
|
| 715 |
+
},
|
| 716 |
+
{
|
| 717 |
+
"id": "SOR-95-212-s43",
|
| 718 |
+
"act_code": "SOR-95-212",
|
| 719 |
+
"act_short": "Plant Protection Regs",
|
| 720 |
+
"act_name": "Plant Protection Regulations",
|
| 721 |
+
"section": "43",
|
| 722 |
+
"marginal_note": "",
|
| 723 |
+
"part": "PART II - Importation",
|
| 724 |
+
"division": "",
|
| 725 |
+
"heading": "Admission of Things for Special Purposes",
|
| 726 |
+
"text": "43\n(1) Notwithstanding sections 38 and 42, the Minister shall issue a permit to a person in respect of any thing that is a pest, infested or a biological obstacle to the control of a pest or that does not meet the requirements of the Act or any regulation or order made thereunder where the Minister determines that\n(a) the thing is imported for the purpose of being used for scientific research, educational, processing, industrial or exhibition purposes; and\n(b) the person is able and willing to comply with the conditions to be set out in the permit and will take every precaution to prevent the spread of any pest or biological obstacle to the control of a pest.\n(2) A thing referred to in subsection (1) shall be packaged, transported, handled, controlled and used in a manner that ensures a pest or biological obstacle to the control of a pest is not introduced into or spread within Canada.\n(3) Where a thing referred to in subsection (1) or any remains of the thing or portion thereof is to be disposed of, the owner or person having the possession, care or control of the thing, remains or portion thereof shall dispose of it in a manner that\n(a) ensures that a pest or biological obstacle to the control of a pest will not spread; and\n(b) destroys any pest or biological obstacle to the control of a pest or ensures that the pest or biological obstacle to the control of a pest is non-viable.\n(4) No person shall import into Canada a thing referred to in subsection (1) unless\n(a) the person has complied with sections 30 and 31, subsection 34(1) and sections 36, 39 and 40;\n(b) if required by the Minister and prior to the issuance of a permit, the person has indicated in writing that the person is able and willing to comply with all the conditions that the Minister has indicated will be set out in the permit;\n(c) the thing is admitted into Canada at a place and conveyed within Canada to the place set out in the permit;\n(d) the thing is dealt with in such a manner as may be specified in the permit;\n(e) the thing is packaged and labelled in accordance with section 41; and\n(f) the person having the possession, care or control of the thing obtains a written authorization in accordance with the Act or any regulation or order made thereunder before undertaking any activity in respect of the thing other than an activity in respect of which the permit was issued and before moving the thing from the original place of destination within Canada.",
|
| 727 |
+
"history": "",
|
| 728 |
+
"last_amended": "2006-03-22",
|
| 729 |
+
"current_to": "2025-11-27",
|
| 730 |
+
"citation": "Plant Protection Regs, s. 43",
|
| 731 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-95-212/section-43.html"
|
| 732 |
+
},
|
| 733 |
+
{
|
| 734 |
+
"id": "SOR-95-212-s44",
|
| 735 |
+
"act_code": "SOR-95-212",
|
| 736 |
+
"act_short": "Plant Protection Regs",
|
| 737 |
+
"act_name": "Plant Protection Regulations",
|
| 738 |
+
"section": "44",
|
| 739 |
+
"marginal_note": "",
|
| 740 |
+
"part": "PART II - Importation",
|
| 741 |
+
"division": "",
|
| 742 |
+
"heading": "Entry Denied to Things or Conveyances en Route to Canada",
|
| 743 |
+
"text": "44 The Minister or an inspector may prohibit the importation into Canada or the territorial sea of Canada, within the meaning of section 4 of the Oceans Act, of any conveyance or other thing, if the Minister or inspector has reasonable grounds to believe that the conveyance or other thing\n(a) is a pest or is infested or is suspected of being infested;\n(b) constitutes or could constitute a biological obstacle to the control of a pest; or\n(c) would, when imported into Canada, be in contravention of a provision of the Act or any regulation or order made under it.",
|
| 744 |
+
"history": "SOR/2002-438, s. 20; SOR/2009-326, s. 11(F); SOR/2025-47, s. 32",
|
| 745 |
+
"last_amended": "2025-02-26",
|
| 746 |
+
"current_to": "2025-11-27",
|
| 747 |
+
"citation": "Plant Protection Regs, s. 44",
|
| 748 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-95-212/section-44.html"
|
| 749 |
+
},
|
| 750 |
+
{
|
| 751 |
+
"id": "SOR-95-212-s45",
|
| 752 |
+
"act_code": "SOR-95-212",
|
| 753 |
+
"act_short": "Plant Protection Regs",
|
| 754 |
+
"act_name": "Plant Protection Regulations",
|
| 755 |
+
"section": "45",
|
| 756 |
+
"marginal_note": "",
|
| 757 |
+
"part": "PART III - Movement of Things",
|
| 758 |
+
"division": "",
|
| 759 |
+
"heading": "Movement Certificate",
|
| 760 |
+
"text": "45\n(1) A Movement Certificate may contain conditions specified by the Minister or an inspector that are necessary to prevent the spread of a pest or biological obstacle to the control of a pest and may specify a period of validity.\n(2) Where a Movement Certificate is required in respect of a thing by the Act or any regulation or order made thereunder or by the Minister or an inspector pursuant to the Minister’s or inspector’s powers under the Act or any regulation or order made thereunder, no person shall move the thing unless the person\n(a) obtains a Movement Certificate; and\n(b) complies with all the conditions set out in the Movement Certificate.\n(3) No person shall move any thing in respect of which a Movement Certificate is required under subsection (2) unless all the conditions set out in the Movement Certificate respecting the thing prior to movement have been complied with.",
|
| 761 |
+
"history": "SOR/2009-326, s. 12",
|
| 762 |
+
"last_amended": "2009-12-10",
|
| 763 |
+
"current_to": "2025-11-27",
|
| 764 |
+
"citation": "Plant Protection Regs, s. 45",
|
| 765 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-95-212/section-45.html"
|
| 766 |
+
},
|
| 767 |
+
{
|
| 768 |
+
"id": "SOR-95-212-s46",
|
| 769 |
+
"act_code": "SOR-95-212",
|
| 770 |
+
"act_short": "Plant Protection Regs",
|
| 771 |
+
"act_name": "Plant Protection Regulations",
|
| 772 |
+
"section": "46",
|
| 773 |
+
"marginal_note": "",
|
| 774 |
+
"part": "PART III - Movement of Things",
|
| 775 |
+
"division": "",
|
| 776 |
+
"heading": "Movement Certificate",
|
| 777 |
+
"text": "46\n(1) No person, other than an inspector, shall alter, deface or erase any information or statement on a Movement Certificate.\n(2) A Movement Certificate is void where\n(a) a person does not comply with any condition referred to in paragraph 45(2)(b) or does not comply with any provision of the Act or any regulation or order made thereunder; or\n(b) a person other than an inspector has altered or defaced the Movement Certificate or has erased any information on the Movement Certificate.\n(3) [Repealed, SOR/2017-94, s. 19]",
|
| 778 |
+
"history": "SOR/2017-94, s. 19",
|
| 779 |
+
"last_amended": "2017-05-19",
|
| 780 |
+
"current_to": "2025-11-27",
|
| 781 |
+
"citation": "Plant Protection Regs, s. 46",
|
| 782 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-95-212/section-46.html"
|
| 783 |
+
},
|
| 784 |
+
{
|
| 785 |
+
"id": "SOR-95-212-s47",
|
| 786 |
+
"act_code": "SOR-95-212",
|
| 787 |
+
"act_short": "Plant Protection Regs",
|
| 788 |
+
"act_name": "Plant Protection Regulations",
|
| 789 |
+
"section": "47",
|
| 790 |
+
"marginal_note": "",
|
| 791 |
+
"part": "PART III - Movement of Things",
|
| 792 |
+
"division": "",
|
| 793 |
+
"heading": "Written Authorization to Move",
|
| 794 |
+
"text": "47 For the purposes of subsection 6(2) of the Act, the inspector’s authorization may be in the form of a Movement Certificate.",
|
| 795 |
+
"history": "SOR/2009-326, s. 13",
|
| 796 |
+
"last_amended": "2009-12-10",
|
| 797 |
+
"current_to": "2025-11-27",
|
| 798 |
+
"citation": "Plant Protection Regs, s. 47",
|
| 799 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-95-212/section-47.html"
|
| 800 |
+
},
|
| 801 |
+
{
|
| 802 |
+
"id": "SOR-95-212-s48",
|
| 803 |
+
"act_code": "SOR-95-212",
|
| 804 |
+
"act_short": "Plant Protection Regs",
|
| 805 |
+
"act_name": "Plant Protection Regulations",
|
| 806 |
+
"section": "48",
|
| 807 |
+
"marginal_note": "",
|
| 808 |
+
"part": "PART III - Movement of Things",
|
| 809 |
+
"division": "",
|
| 810 |
+
"heading": "Identification",
|
| 811 |
+
"text": "48\n(1) Any thing in respect of which a Movement Certificate is issued shall bear a tag or label, or be accompanied by an invoice, that clearly identifies the thing, the origin of the thing and its final destination.\n(2) Any label, tag or invoice referred to in subsection (1) shall also state the name and complete address of the consignee and consignor.",
|
| 812 |
+
"history": "",
|
| 813 |
+
"last_amended": "2006-03-22",
|
| 814 |
+
"current_to": "2025-11-27",
|
| 815 |
+
"citation": "Plant Protection Regs, s. 48",
|
| 816 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-95-212/section-48.html"
|
| 817 |
+
},
|
| 818 |
+
{
|
| 819 |
+
"id": "SOR-95-212-s49",
|
| 820 |
+
"act_code": "SOR-95-212",
|
| 821 |
+
"act_short": "Plant Protection Regs",
|
| 822 |
+
"act_name": "Plant Protection Regulations",
|
| 823 |
+
"section": "49",
|
| 824 |
+
"marginal_note": "",
|
| 825 |
+
"part": "PART III - Movement of Things",
|
| 826 |
+
"division": "",
|
| 827 |
+
"heading": "Packaging and Transportation",
|
| 828 |
+
"text": "49 Any thing in respect of which a Movement Certificate is issued shall be packaged, contained and moved in such a manner as to prevent the thing from becoming infested or becoming a biological obstacle to the control of a pest or from spreading a pest or a biological obstacle to the control of a pest.",
|
| 829 |
+
"history": "",
|
| 830 |
+
"last_amended": "2006-03-22",
|
| 831 |
+
"current_to": "2025-11-27",
|
| 832 |
+
"citation": "Plant Protection Regs, s. 49",
|
| 833 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-95-212/section-49.html"
|
| 834 |
+
},
|
| 835 |
+
{
|
| 836 |
+
"id": "SOR-95-212-s50",
|
| 837 |
+
"act_code": "SOR-95-212",
|
| 838 |
+
"act_short": "Plant Protection Regs",
|
| 839 |
+
"act_name": "Plant Protection Regulations",
|
| 840 |
+
"section": "50",
|
| 841 |
+
"marginal_note": "",
|
| 842 |
+
"part": "PART III - Movement of Things",
|
| 843 |
+
"division": "",
|
| 844 |
+
"heading": "Prohibitions",
|
| 845 |
+
"text": "50\n(1) A person must not move within Canada a thing that is a pest or that is identified in the Agency document as being a thing that could be infested with a pest or that is or could be a biological obstacle to the control of a pest if\n(a) the Agency document indicates that movement of the thing is prohibited; or\n(b) any restrictions set out in the Agency document with respect to the movement of the thing, including with respect to the thing’s place of origin and destination and the taking of mitigation measures, are not complied with.\n(2) In this section, Agency document means the document entitled Movement prohibitions and restrictions in Canada under the Plant Protection Act, published by the Agency, as amended from time to time.",
|
| 846 |
+
"history": "SOR/2025-236, s. 5",
|
| 847 |
+
"last_amended": "2025-11-21",
|
| 848 |
+
"current_to": "2025-11-27",
|
| 849 |
+
"citation": "Plant Protection Regs, s. 50",
|
| 850 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-95-212/section-50.html"
|
| 851 |
+
},
|
| 852 |
+
{
|
| 853 |
+
"id": "SOR-95-212-s51",
|
| 854 |
+
"act_code": "SOR-95-212",
|
| 855 |
+
"act_short": "Plant Protection Regs",
|
| 856 |
+
"act_name": "Plant Protection Regulations",
|
| 857 |
+
"section": "51",
|
| 858 |
+
"marginal_note": "",
|
| 859 |
+
"part": "PART III - Movement of Things",
|
| 860 |
+
"division": "",
|
| 861 |
+
"heading": "Prohibitions",
|
| 862 |
+
"text": "51 [Repealed, SOR/2025-236, s. 5]",
|
| 863 |
+
"history": "",
|
| 864 |
+
"last_amended": "2025-11-21",
|
| 865 |
+
"current_to": "2025-11-27",
|
| 866 |
+
"citation": "Plant Protection Regs, s. 51",
|
| 867 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-95-212/section-51.html"
|
| 868 |
+
},
|
| 869 |
+
{
|
| 870 |
+
"id": "SOR-95-212-s52",
|
| 871 |
+
"act_code": "SOR-95-212",
|
| 872 |
+
"act_short": "Plant Protection Regs",
|
| 873 |
+
"act_name": "Plant Protection Regulations",
|
| 874 |
+
"section": "52",
|
| 875 |
+
"marginal_note": "",
|
| 876 |
+
"part": "PART III - Movement of Things",
|
| 877 |
+
"division": "",
|
| 878 |
+
"heading": "Prohibitions",
|
| 879 |
+
"text": "52 [Repealed, SOR/2025-236, s. 5]",
|
| 880 |
+
"history": "",
|
| 881 |
+
"last_amended": "2025-11-21",
|
| 882 |
+
"current_to": "2025-11-27",
|
| 883 |
+
"citation": "Plant Protection Regs, s. 52",
|
| 884 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-95-212/section-52.html"
|
| 885 |
+
},
|
| 886 |
+
{
|
| 887 |
+
"id": "SOR-95-212-s53",
|
| 888 |
+
"act_code": "SOR-95-212",
|
| 889 |
+
"act_short": "Plant Protection Regs",
|
| 890 |
+
"act_name": "Plant Protection Regulations",
|
| 891 |
+
"section": "53",
|
| 892 |
+
"marginal_note": "",
|
| 893 |
+
"part": "PART III - Movement of Things",
|
| 894 |
+
"division": "",
|
| 895 |
+
"heading": "Prohibition Respecting a Place Declared Infested by the Minister or an Inspector",
|
| 896 |
+
"text": "53\n(1) Where, pursuant to section 11 or 12 of the Act or subsection 15(3) of the Act, the Minister, by an order, or an inspector, by a declaration, has declared a place infested, no person shall undertake any activity in respect of any thing, unless the movement of the thing within, into or out of the place is permitted pursuant to that order or declaration.\n(2) Where a person undertakes an activity referred to in subsection (1), the person shall undertake the activity in the manner determined by an inspector, on the basis of the extent of the infestation or the type of thing.",
|
| 897 |
+
"history": "",
|
| 898 |
+
"last_amended": "2006-03-22",
|
| 899 |
+
"current_to": "2025-11-27",
|
| 900 |
+
"citation": "Plant Protection Regs, s. 53",
|
| 901 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-95-212/section-53.html"
|
| 902 |
+
},
|
| 903 |
+
{
|
| 904 |
+
"id": "SOR-95-212-s54",
|
| 905 |
+
"act_code": "SOR-95-212",
|
| 906 |
+
"act_short": "Plant Protection Regs",
|
| 907 |
+
"act_name": "Plant Protection Regulations",
|
| 908 |
+
"section": "54",
|
| 909 |
+
"marginal_note": "",
|
| 910 |
+
"part": "PART III - Movement of Things",
|
| 911 |
+
"division": "",
|
| 912 |
+
"heading": "Movement of Things for Special Purposes",
|
| 913 |
+
"text": "54\n(1) Any inspector may issue a Movement Certificate to a person for any thing that is prohibited from being moved pursuant to section 50 or that does not meet the requirements of the Act or any regulation or order made thereunder where the Minister or an inspector determines that\n(a) the thing is being moved for the purpose of being used for scientific research, educational, processing, industrial or exhibition purposes; and\n(b) the person is able and willing to comply with the conditions to be set out in the Movement Certificate and will take every precaution to prevent the spread of any pest or biological obstacle to the control of a pest.\n(2) A thing referred to in subsection (1) shall be packaged, transported, handled, controlled and used in a manner that ensures that a pest or biological obstacle to the control of a pest is not spread within Canada.\n(3) Where a thing referred to in subsection (1) or any remains of the thing or portion thereof is to be disposed of, the owner or person having the possession, care or control of the thing or portion thereof shall dispose of it in a manner that\n(a) ensures that a pest or biological obstacle to the control of a pest will not spread; and\n(b) destroys any pest or biological obstacle to the control of a pest or ensures that the pest or biological obstacle to the control of a pest is non-viable.\n(4) No person shall move within Canada a thing referred to in subsection (1) unless\n(a) the person has complied with paragraph 45(2)(b) and sections 48 and 49;\n(b) if required by the Minister or an inspector and prior to the issuance of a Movement Certificate, the person has indicated in writing that the person is able and willing to comply with all the conditions that the Minister or an inspector has indicated will be set out in the Movement Certificate;\n(c) the thing is moved within Canada to the place specified in the Movement Certificate; and\n(d) the thing is dealt with in such a manner as may be specified in the Movement Certificate.",
|
| 914 |
+
"history": "",
|
| 915 |
+
"last_amended": "2006-03-22",
|
| 916 |
+
"current_to": "2025-11-27",
|
| 917 |
+
"citation": "Plant Protection Regs, s. 54",
|
| 918 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-95-212/section-54.html"
|
| 919 |
+
},
|
| 920 |
+
{
|
| 921 |
+
"id": "SOR-95-212-s54.1",
|
| 922 |
+
"act_code": "SOR-95-212",
|
| 923 |
+
"act_short": "Plant Protection Regs",
|
| 924 |
+
"act_name": "Plant Protection Regulations",
|
| 925 |
+
"section": "54.1",
|
| 926 |
+
"marginal_note": "",
|
| 927 |
+
"part": "PART III - Movement of Things",
|
| 928 |
+
"division": "",
|
| 929 |
+
"heading": "Requirement to Move",
|
| 930 |
+
"text": "54.1 An inspector or a peace officer acting on the request of an inspector may require any thing to be moved to a specified place for the purpose of complying with the requirements of the Act and all regulations and orders made under it.",
|
| 931 |
+
"history": "SOR/2025-236, s. 6",
|
| 932 |
+
"last_amended": "2025-11-21",
|
| 933 |
+
"current_to": "2025-11-27",
|
| 934 |
+
"citation": "Plant Protection Regs, s. 54.1",
|
| 935 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-95-212/section-54.1.html"
|
| 936 |
+
},
|
| 937 |
+
{
|
| 938 |
+
"id": "SOR-95-212-s55",
|
| 939 |
+
"act_code": "SOR-95-212",
|
| 940 |
+
"act_short": "Plant Protection Regs",
|
| 941 |
+
"act_name": "Plant Protection Regulations",
|
| 942 |
+
"section": "55",
|
| 943 |
+
"marginal_note": "",
|
| 944 |
+
"part": "PART IV - Exportation",
|
| 945 |
+
"division": "",
|
| 946 |
+
"heading": "Canadian Phytosanitary Certificate and Other Documents",
|
| 947 |
+
"text": "55\n(1) In this Part,\nCanadian Phytosanitary Certificate means a document, issued by an inspector, that attests to the phytosanitary status of any thing exported from Canada and that\n(a) contains the information required by the Model Phytosanitary Certificate set out in the Annex to the International Plant Protection Convention approved by the Food and Agriculture Organization of the United Nations Conference at its Twentieth Session in November 1979, as amended from time to time, and\n(b) is signed by an inspector and sealed with an official Canadian Phytosanitary Certificate seal; (certificat phytosanitaire canadien)\nCanadian Phytosanitary Certificate for Re-export means a document, issued by an inspector, that indicates that a thing is considered to conform with the laws of the importing country respecting phytosanitary import requirements, and to which is attached a copy of the original Phytosanitary Certificate from the country of origin and that\n(a) contains the information required by the Model Phytosanitary Certificate for Re-export set out in the Annex to the International Plant Protection Convention approved by the Food and Agriculture Organization of the United Nations Conference at its Twentieth Session in November 1979, as amended from time to time, and\n(b) is signed by an inspector and sealed with an official Canadian Phytosanitary Certificate seal. (certificat phytosanitaire canadien pour réexportation)\n(2) No person shall export from Canada any thing for which a Canadian Phytosanitary Certificate, Canadian Phytosanitary Certificate for Re-export or any other document is required by the phytosanitary certification authorities in the country of final destination, unless the appropriate document is issued by an inspector.\n(3) An inspector may issue a Canadian Phytosanitary Certificate or Canadian Phytosanitary Certificate for Re-export or any other document required by the phytosanitary certification authorities in the country of final destination only if the inspector believes on reasonable grounds that the thing to be exported conforms with the laws of the importing country respecting phytosanitary import requirements.\n(4) No person, other than an inspector or a person authorized in writing by an inspector, shall have in the person’s possession, custody or control an official Canadian Phytosanitary Certificate seal or any facsimile thereof.\n(5) No person, other than an inspector shall alter, deface or erase any information or statement in a Canadian Phytosanitary Certificate, Canadian Phytosanitary Certificate for Re-export or any other document issued for the purposes of the Act or any regulation or order made thereunder.\n(6) A Canadian Phytosanitary Certificate or Canadian Phytosanitary Certificate for Re-export or any other document issued for the purposes of the Act or any regulation or order made thereunder is void if any person other than an inspector has altered, defaced or erased any information or statement in the certificate.\n(7) No person shall substitute any other thing for any thing for which a Canadian Phytosanitary Certificate, Canadian Phytosanitary Certificate for Re-export or any other document issued for the purposes of the Act or any regulation or order made thereunder is issued by an inspector.",
|
| 948 |
+
"history": "",
|
| 949 |
+
"last_amended": "2006-03-22",
|
| 950 |
+
"current_to": "2025-11-27",
|
| 951 |
+
"citation": "Plant Protection Regs, s. 55",
|
| 952 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-95-212/section-55.html"
|
| 953 |
+
},
|
| 954 |
+
{
|
| 955 |
+
"id": "SOR-95-212-s56",
|
| 956 |
+
"act_code": "SOR-95-212",
|
| 957 |
+
"act_short": "Plant Protection Regs",
|
| 958 |
+
"act_name": "Plant Protection Regulations",
|
| 959 |
+
"section": "56",
|
| 960 |
+
"marginal_note": "",
|
| 961 |
+
"part": "PART IV - Exportation",
|
| 962 |
+
"division": "",
|
| 963 |
+
"heading": "General",
|
| 964 |
+
"text": "56\n(1) For the purposes of preventing the spread of pests, no person shall export from Canada any thing referred to in section 7000 of the schedule to the Export Control List or any thing that is infested with a thing referred to in that section, unless prior to export the person has obtained an export permit referred to in section 7 of the Export and Import Permits Act.\n(2) Where a person has obtained an export permit referred to in subsection (1), the person is not required to obtain a Movement Certificate in respect of the thing if the thing is shipped directly out of Canada.\n(3) Any thing in respect of which an export permit referred to in subsection (1) has been issued shall be packaged, contained and moved in such a manner as to prevent the thing from spreading a pest or biological obstacle to the control of a pest.",
|
| 965 |
+
"history": "",
|
| 966 |
+
"last_amended": "2006-03-22",
|
| 967 |
+
"current_to": "2025-11-27",
|
| 968 |
+
"citation": "Plant Protection Regs, s. 56",
|
| 969 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-95-212/section-56.html"
|
| 970 |
+
},
|
| 971 |
+
{
|
| 972 |
+
"id": "SOR-95-212-s57",
|
| 973 |
+
"act_code": "SOR-95-212",
|
| 974 |
+
"act_short": "Plant Protection Regs",
|
| 975 |
+
"act_name": "Plant Protection Regulations",
|
| 976 |
+
"section": "57",
|
| 977 |
+
"marginal_note": "",
|
| 978 |
+
"part": "PART IV - Exportation",
|
| 979 |
+
"division": "",
|
| 980 |
+
"heading": "General",
|
| 981 |
+
"text": "57 No person shall export or re-export any thing from Canada unless it meets the laws of the importing country respecting phytosanitary import requirements.",
|
| 982 |
+
"history": "SOR/2009-326, s. 14(F)",
|
| 983 |
+
"last_amended": "2009-12-10",
|
| 984 |
+
"current_to": "2025-11-27",
|
| 985 |
+
"citation": "Plant Protection Regs, s. 57",
|
| 986 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-95-212/section-57.html"
|
| 987 |
+
},
|
| 988 |
+
{
|
| 989 |
+
"id": "SOR-95-212-s58",
|
| 990 |
+
"act_code": "SOR-95-212",
|
| 991 |
+
"act_short": "Plant Protection Regs",
|
| 992 |
+
"act_name": "Plant Protection Regulations",
|
| 993 |
+
"section": "58",
|
| 994 |
+
"marginal_note": "",
|
| 995 |
+
"part": "PART IV - Exportation",
|
| 996 |
+
"division": "",
|
| 997 |
+
"heading": "Conveyance and Facility Inspection",
|
| 998 |
+
"text": "58\n(1) For the purposes of this section, vessel means any ship, boat or other means of transport used or designed to be used in water navigation.\n(2) No person shall load or complete the loading of grain or a grain product aboard a vessel unless\n(a) prior to the loading of the grain or grain product and, if required by an inspector for the purpose of determining if the vessel is infested or constitutes or could constitute a biological obstacle to the control of a pest, during the loading, the vessel is inspected and approved for loading, in writing, by an inspector; or\n(b) an inspector advises that an inspection and approval of the vessel is not required because the inspector has reasonable grounds to believe that the vessel is not infested or does not or could not constitute a biological obstacle to the control of a pest.\n(3) Where the Minister or an inspector believes on reasonable grounds that the vessel that is to receive the grain or grain product is or could be infested or constitutes or could constitute a biological obstacle to the control of a pest, any inspector may require the owner or person having the possession, care or control of the vessel\n(a) to treat or clean the vessel; and\n(b) to treat, move or dispose of any thing found on or in the vessel.",
|
| 999 |
+
"history": "SOR/2017-94, s. 20(F)",
|
| 1000 |
+
"last_amended": "2017-05-19",
|
| 1001 |
+
"current_to": "2025-11-27",
|
| 1002 |
+
"citation": "Plant Protection Regs, s. 58",
|
| 1003 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-95-212/section-58.html"
|
| 1004 |
+
},
|
| 1005 |
+
{
|
| 1006 |
+
"id": "SOR-95-212-s59",
|
| 1007 |
+
"act_code": "SOR-95-212",
|
| 1008 |
+
"act_short": "Plant Protection Regs",
|
| 1009 |
+
"act_name": "Plant Protection Regulations",
|
| 1010 |
+
"section": "59",
|
| 1011 |
+
"marginal_note": "",
|
| 1012 |
+
"part": "PART IV - Exportation",
|
| 1013 |
+
"division": "",
|
| 1014 |
+
"heading": "Conveyance and Facility Inspection",
|
| 1015 |
+
"text": "59 If before, during or after the loading or unloading of grain or a grain product aboard or from a conveyance, an inspector believes on reasonable grounds that the conveyance, grain or grain product is or could be infested or constitutes or could constitute a biological obstacle to the control of a pest, any inspector may require the owner or the person having the possession, care or control of the conveyance\n(a) to treat or clean the conveyance, grain or grain product; and\n(b) to treat, move or dispose of any thing found on or in the conveyance, grain or grain product.",
|
| 1016 |
+
"history": "SOR/2017-94, ss. 21, 22(F)",
|
| 1017 |
+
"last_amended": "2017-05-19",
|
| 1018 |
+
"current_to": "2025-11-27",
|
| 1019 |
+
"citation": "Plant Protection Regs, s. 59",
|
| 1020 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-95-212/section-59.html"
|
| 1021 |
+
},
|
| 1022 |
+
{
|
| 1023 |
+
"id": "SOR-95-212-s60",
|
| 1024 |
+
"act_code": "SOR-95-212",
|
| 1025 |
+
"act_short": "Plant Protection Regs",
|
| 1026 |
+
"act_name": "Plant Protection Regulations",
|
| 1027 |
+
"section": "60",
|
| 1028 |
+
"marginal_note": "",
|
| 1029 |
+
"part": "PART IV - Exportation",
|
| 1030 |
+
"division": "",
|
| 1031 |
+
"heading": "Conveyance and Facility Inspection",
|
| 1032 |
+
"text": "60 Where the Minister or an inspector believes on reasonable grounds that a conveyance or a facility used for any activity undertaken in respect of any thing that requires a Canadian Phytosanitary Certificate, a Canadian Phytosanitary Certificate for Re-export or any other phytosanitary document is or could be infested or constitutes or could constitute a biological obstacle to the control of a pest, any inspector may require the owner or person having the possession, care or control of the conveyance or facility\n(a) to treat or clean the conveyance or the facility; and\n(b) to treat, move or dispose of any thing found on or in the conveyance or in the facility.",
|
| 1033 |
+
"history": "SOR/2017-94, s. 23",
|
| 1034 |
+
"last_amended": "2017-05-19",
|
| 1035 |
+
"current_to": "2025-11-27",
|
| 1036 |
+
"citation": "Plant Protection Regs, s. 60",
|
| 1037 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-95-212/section-60.html"
|
| 1038 |
+
}
|
| 1039 |
+
]
|
data/processed/SOR-97-229.json
ADDED
|
@@ -0,0 +1,53 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"id": "SOR-97-229-s1",
|
| 4 |
+
"act_code": "SOR-97-229",
|
| 5 |
+
"act_short": "Precursor & Substance Exemption Regs",
|
| 6 |
+
"act_name": "Regulations Exempting Certain Precursors and Controlled Substances from the Application of the Controlled Drugs and Substances Act",
|
| 7 |
+
"section": "1",
|
| 8 |
+
"marginal_note": "",
|
| 9 |
+
"part": "",
|
| 10 |
+
"division": "",
|
| 11 |
+
"heading": "Exemptions",
|
| 12 |
+
"text": "1 The substances set out in Schedule I are exempt from the application of the Controlled Drugs and Substances Act.",
|
| 13 |
+
"history": "",
|
| 14 |
+
"last_amended": "2006-03-22",
|
| 15 |
+
"current_to": "2025-12-02",
|
| 16 |
+
"citation": "Precursor & Substance Exemption Regs, s. 1",
|
| 17 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-97-229/section-1.html"
|
| 18 |
+
},
|
| 19 |
+
{
|
| 20 |
+
"id": "SOR-97-229-s2 and 3",
|
| 21 |
+
"act_code": "SOR-97-229",
|
| 22 |
+
"act_short": "Precursor & Substance Exemption Regs",
|
| 23 |
+
"act_name": "Regulations Exempting Certain Precursors and Controlled Substances from the Application of the Controlled Drugs and Substances Act",
|
| 24 |
+
"section": "2 and 3",
|
| 25 |
+
"marginal_note": "",
|
| 26 |
+
"part": "",
|
| 27 |
+
"division": "",
|
| 28 |
+
"heading": "Exemptions",
|
| 29 |
+
"text": "2 and 3 [Repealed, SOR/97-514, s. 2]",
|
| 30 |
+
"history": "",
|
| 31 |
+
"last_amended": "2006-03-22",
|
| 32 |
+
"current_to": "2025-12-02",
|
| 33 |
+
"citation": "Precursor & Substance Exemption Regs, s. 2 and 3",
|
| 34 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-97-229/section-2 and 3.html"
|
| 35 |
+
},
|
| 36 |
+
{
|
| 37 |
+
"id": "SOR-97-229-s*4",
|
| 38 |
+
"act_code": "SOR-97-229",
|
| 39 |
+
"act_short": "Precursor & Substance Exemption Regs",
|
| 40 |
+
"act_name": "Regulations Exempting Certain Precursors and Controlled Substances from the Application of the Controlled Drugs and Substances Act",
|
| 41 |
+
"section": "*4",
|
| 42 |
+
"marginal_note": "",
|
| 43 |
+
"part": "",
|
| 44 |
+
"division": "",
|
| 45 |
+
"heading": "Coming into Force",
|
| 46 |
+
"text": "*4 These Regulations come into force on the day which the Controlled Drugs and Substances Act, chapter 19 of the Statutes of Canada, 1996, comes into force.\n* [Note: Regulations in force May 14, 1997, see SI/97-47.]",
|
| 47 |
+
"history": "",
|
| 48 |
+
"last_amended": "2006-03-22",
|
| 49 |
+
"current_to": "2025-12-02",
|
| 50 |
+
"citation": "Precursor & Substance Exemption Regs, s. *4",
|
| 51 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-97-229/section-*4.html"
|
| 52 |
+
}
|
| 53 |
+
]
|
data/processed/SOR-97-234.json
ADDED
|
@@ -0,0 +1,512 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"id": "SOR-97-234-s1",
|
| 4 |
+
"act_code": "SOR-97-234",
|
| 5 |
+
"act_short": "CDSA Police Enforcement Regs",
|
| 6 |
+
"act_name": "Controlled Drugs and Substances Act (Police Enforcement) Regulations",
|
| 7 |
+
"section": "1",
|
| 8 |
+
"marginal_note": "Definitions",
|
| 9 |
+
"part": "",
|
| 10 |
+
"division": "",
|
| 11 |
+
"heading": "Interpretation",
|
| 12 |
+
"text": "1 The definitions in this section apply in these Regulations.\nAct means the Controlled Drugs and Substances Act. (Loi)\nappropriate police officer means\n(a) in the case of the RCMP, the Assistant Commissioner of the RCMP in charge of drug enforcement; and\n(b) in the case of any other police force, the member of the police force who is the most senior officer responsible for operations. (agent de police compétent)\nchief means, in respect of a police force other than the RCMP, the senior police officer in charge of the police force. (chef)\nparticular investigation means a primary investigation conducted under the Act or any other Act of Parliament and includes any investigation that arises from the primary investigation. (enquête particulière). (enquête particulière)\npolice force means a police force that is designated pursuant to section 2. (corps policier)\nproceeding means a preliminary inquiry, trial or other proceeding under the Act or any other Act of Parliament. (procédure)\nprovincial minister means the provincial minister responsible for policing in a province. (ministre provincial)\nRCMP means the Royal Canadian Mounted Police. (GRC)",
|
| 13 |
+
"history": "SOR/2005-72, ss. 1, 16(F)",
|
| 14 |
+
"last_amended": "2006-03-22",
|
| 15 |
+
"current_to": "2022-07-25",
|
| 16 |
+
"citation": "CDSA Police Enforcement Regs, s. 1",
|
| 17 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-97-234/section-1.html"
|
| 18 |
+
},
|
| 19 |
+
{
|
| 20 |
+
"id": "SOR-97-234-s2",
|
| 21 |
+
"act_code": "SOR-97-234",
|
| 22 |
+
"act_short": "CDSA Police Enforcement Regs",
|
| 23 |
+
"act_name": "Controlled Drugs and Substances Act (Police Enforcement) Regulations",
|
| 24 |
+
"section": "2",
|
| 25 |
+
"marginal_note": "Authority to designate",
|
| 26 |
+
"part": "",
|
| 27 |
+
"division": "",
|
| 28 |
+
"heading": "Designations of Police Forces",
|
| 29 |
+
"text": "2 The Minister of Public Safety and Emergency Preparedness and every provincial minister are authorized to designate any police force within the jurisdiction of that Minister or the provincial minister for the purposes of these Regulations or any of its provisions.",
|
| 30 |
+
"history": "SOR/2022-174, s. 1",
|
| 31 |
+
"last_amended": "2022-07-15",
|
| 32 |
+
"current_to": "2022-07-25",
|
| 33 |
+
"citation": "CDSA Police Enforcement Regs, s. 2",
|
| 34 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-97-234/section-2.html"
|
| 35 |
+
},
|
| 36 |
+
{
|
| 37 |
+
"id": "SOR-97-234-s3",
|
| 38 |
+
"act_code": "SOR-97-234",
|
| 39 |
+
"act_short": "CDSA Police Enforcement Regs",
|
| 40 |
+
"act_name": "Controlled Drugs and Substances Act (Police Enforcement) Regulations",
|
| 41 |
+
"section": "3",
|
| 42 |
+
"marginal_note": "Street drugs",
|
| 43 |
+
"part": "",
|
| 44 |
+
"division": "",
|
| 45 |
+
"heading": "Sections 5 to 7.1 of the Act",
|
| 46 |
+
"text": "3 A member of a police force is exempt from the application of any of sections 5 to 7.1 of the Act if the member engages or attempts to engage in conduct referred to in any of those sections that involves a substance other than a substance referred to in any of subsections 8(1), 11(1) and 13(1) of these Regulations, of which the member has come into possession during a particular investigation, if the member\n(a) is an active member of the police force; and\n(b) is acting in the course of the member’s responsibilities for the purposes of the particular investigation.",
|
| 47 |
+
"history": "SOR/2005-72, s. 17(F); SOR/2022-174, s. 3",
|
| 48 |
+
"last_amended": "2022-07-15",
|
| 49 |
+
"current_to": "2022-07-25",
|
| 50 |
+
"citation": "CDSA Police Enforcement Regs, s. 3",
|
| 51 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-97-234/section-3.html"
|
| 52 |
+
},
|
| 53 |
+
{
|
| 54 |
+
"id": "SOR-97-234-s4",
|
| 55 |
+
"act_code": "SOR-97-234",
|
| 56 |
+
"act_short": "CDSA Police Enforcement Regs",
|
| 57 |
+
"act_name": "Controlled Drugs and Substances Act (Police Enforcement) Regulations",
|
| 58 |
+
"section": "4",
|
| 59 |
+
"marginal_note": "Direction and control",
|
| 60 |
+
"part": "",
|
| 61 |
+
"division": "",
|
| 62 |
+
"heading": "Sections 5 to 7.1 of the Act",
|
| 63 |
+
"text": "4 A person is exempt from the application of any of section 5 to 7.1 of the Act if the person engages or attempts to engage in conduct referred to in any of those sections that involves a substance, other than a substance referred to in any of subsections 8(1), 11(1) and 13(1) of these Regulations, of which the person has come into possession, if the person\n(a) acts under the direction and control of a member of a police force who meets the conditions set out in paragraphs 3(a) and (b); and\n(b) acts to assist the member referred to in paragraph (a) in the course of the particular investigation.",
|
| 64 |
+
"history": "SOR/2005-72, s. 2; SOR/2022-174, s. 4",
|
| 65 |
+
"last_amended": "2022-07-15",
|
| 66 |
+
"current_to": "2022-07-25",
|
| 67 |
+
"citation": "CDSA Police Enforcement Regs, s. 4",
|
| 68 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-97-234/section-4.html"
|
| 69 |
+
},
|
| 70 |
+
{
|
| 71 |
+
"id": "SOR-97-234-s5",
|
| 72 |
+
"act_code": "SOR-97-234",
|
| 73 |
+
"act_short": "CDSA Police Enforcement Regs",
|
| 74 |
+
"act_name": "Controlled Drugs and Substances Act (Police Enforcement) Regulations",
|
| 75 |
+
"section": "5",
|
| 76 |
+
"marginal_note": "RCMP notification",
|
| 77 |
+
"part": "",
|
| 78 |
+
"division": "",
|
| 79 |
+
"heading": "Sections 5 to 7.1 of the Act",
|
| 80 |
+
"text": "5 A member who is exempt, under section 3 of these Regulations, from the application of section 6 of the Act shall notify, in written or electronic format, the Assistant Commissioner of the RCMP in charge of drug enforcement of the importation or exportation of a substance by the member in accordance with section 3 of these Regulations, or by a person under the member's direction or control pursuant to section 4 of these Regulations, before the substance is imported or exported or, if it is not practicable to do so before the substance is imported or exported, as soon as practicable after that time.",
|
| 81 |
+
"history": "SOR/2005-72, s. 3",
|
| 82 |
+
"last_amended": "2006-03-22",
|
| 83 |
+
"current_to": "2022-07-25",
|
| 84 |
+
"citation": "CDSA Police Enforcement Regs, s. 5",
|
| 85 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-97-234/section-5.html"
|
| 86 |
+
},
|
| 87 |
+
{
|
| 88 |
+
"id": "SOR-97-234-s5.1",
|
| 89 |
+
"act_code": "SOR-97-234",
|
| 90 |
+
"act_short": "CDSA Police Enforcement Regs",
|
| 91 |
+
"act_name": "Controlled Drugs and Substances Act (Police Enforcement) Regulations",
|
| 92 |
+
"section": "5.1",
|
| 93 |
+
"marginal_note": "Holding out",
|
| 94 |
+
"part": "",
|
| 95 |
+
"division": "",
|
| 96 |
+
"heading": "Section 5 of the Act — Holding Out",
|
| 97 |
+
"text": "5.1 A member of a police force who engages or attempts to engage in conduct referred to in section 5 of the Act by representing or holding out a substance to be a substance included in Schedule I, II, III or IV of the Act is exempt from the application of that section if the member\n(a) is an active member of the police force; and\n(b) is acting in the course of the member's responsibilities for the purposes of a particular investigation.",
|
| 98 |
+
"history": "SOR/2005-72, s. 3",
|
| 99 |
+
"last_amended": "2006-03-22",
|
| 100 |
+
"current_to": "2022-07-25",
|
| 101 |
+
"citation": "CDSA Police Enforcement Regs, s. 5.1",
|
| 102 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-97-234/section-5.1.html"
|
| 103 |
+
},
|
| 104 |
+
{
|
| 105 |
+
"id": "SOR-97-234-s5.2",
|
| 106 |
+
"act_code": "SOR-97-234",
|
| 107 |
+
"act_short": "CDSA Police Enforcement Regs",
|
| 108 |
+
"act_name": "Controlled Drugs and Substances Act (Police Enforcement) Regulations",
|
| 109 |
+
"section": "5.2",
|
| 110 |
+
"marginal_note": "Direction and control",
|
| 111 |
+
"part": "",
|
| 112 |
+
"division": "",
|
| 113 |
+
"heading": "Section 5 of the Act — Holding Out",
|
| 114 |
+
"text": "5.2 A person who engages or attempts to engage in conduct referred to in section 5 of the Act by representing or holding out a substance to be a substance included in Schedule I, II, III or IV of the Act is exempt from the application of that section if the person\n(a) acts under the direction and control of a member of a police force who meets the conditions set out in paragraphs 5.1(a) and (b); and\n(b) acts to assist the member referred to in paragraph (a) in the course of the particular investigation.",
|
| 115 |
+
"history": "SOR/2005-72, s. 3",
|
| 116 |
+
"last_amended": "2006-03-22",
|
| 117 |
+
"current_to": "2022-07-25",
|
| 118 |
+
"citation": "CDSA Police Enforcement Regs, s. 5.2",
|
| 119 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-97-234/section-5.2.html"
|
| 120 |
+
},
|
| 121 |
+
{
|
| 122 |
+
"id": "SOR-97-234-s6",
|
| 123 |
+
"act_code": "SOR-97-234",
|
| 124 |
+
"act_short": "CDSA Police Enforcement Regs",
|
| 125 |
+
"act_name": "Controlled Drugs and Substances Act (Police Enforcement) Regulations",
|
| 126 |
+
"section": "6",
|
| 127 |
+
"marginal_note": "Double-doctoring",
|
| 128 |
+
"part": "",
|
| 129 |
+
"division": "",
|
| 130 |
+
"heading": "Subsection 4(2) of the Act",
|
| 131 |
+
"text": "6 A member of a police force is exempt from the application of subsection 4(2) of the Act where the member engages or attempts to engage in conduct referred to in that subsection, if the member\n(a) is an active member of the police force; and\n(b) is acting in the course of the member’s responsibilities for the purposes of a particular investigation.",
|
| 132 |
+
"history": "SOR/2005-72, s. 17(F)",
|
| 133 |
+
"last_amended": "2006-03-22",
|
| 134 |
+
"current_to": "2022-07-25",
|
| 135 |
+
"citation": "CDSA Police Enforcement Regs, s. 6",
|
| 136 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-97-234/section-6.html"
|
| 137 |
+
},
|
| 138 |
+
{
|
| 139 |
+
"id": "SOR-97-234-s7",
|
| 140 |
+
"act_code": "SOR-97-234",
|
| 141 |
+
"act_short": "CDSA Police Enforcement Regs",
|
| 142 |
+
"act_name": "Controlled Drugs and Substances Act (Police Enforcement) Regulations",
|
| 143 |
+
"section": "7",
|
| 144 |
+
"marginal_note": "Direction and control",
|
| 145 |
+
"part": "",
|
| 146 |
+
"division": "",
|
| 147 |
+
"heading": "Subsection 4(2) of the Act",
|
| 148 |
+
"text": "7 A person is exempt from the application of subsection 4(2) of the Act where the person engages or attempts to engage in conduct referred to in that subsection, if the person\n(a) acts under the direction and control of a member of a police force who meets the conditions set out in paragraphs 6(a) and (b); and\n(b) acts to assist the member referred to in paragraph (a) in the course of the particular investigation.",
|
| 149 |
+
"history": "SOR/2005-72, s. 4",
|
| 150 |
+
"last_amended": "2006-03-22",
|
| 151 |
+
"current_to": "2022-07-25",
|
| 152 |
+
"citation": "CDSA Police Enforcement Regs, s. 7",
|
| 153 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-97-234/section-7.html"
|
| 154 |
+
},
|
| 155 |
+
{
|
| 156 |
+
"id": "SOR-97-234-s7.1",
|
| 157 |
+
"act_code": "SOR-97-234",
|
| 158 |
+
"act_short": "CDSA Police Enforcement Regs",
|
| 159 |
+
"act_name": "Controlled Drugs and Substances Act (Police Enforcement) Regulations",
|
| 160 |
+
"section": "7.1",
|
| 161 |
+
"marginal_note": "Member of police force",
|
| 162 |
+
"part": "",
|
| 163 |
+
"division": "",
|
| 164 |
+
"heading": "Provisions of the Precursor Control Regulations",
|
| 165 |
+
"text": "7.1 A member of a police force is exempt from the application of subsections 6(1) and (2) and 9(1), section 10, subsections 47(1) and 57(1) and section 88 of the Precursor Control Regulations if the member engages or attempts to engage in conduct referred to in any of those provisions and\n(a) is an active member of the police force; and\n(b) is acting in the course of the member's responsibilities for the purposes of a particular investigation.",
|
| 166 |
+
"history": "SOR/2005-72, s. 5",
|
| 167 |
+
"last_amended": "2006-03-22",
|
| 168 |
+
"current_to": "2022-07-25",
|
| 169 |
+
"citation": "CDSA Police Enforcement Regs, s. 7.1",
|
| 170 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-97-234/section-7.1.html"
|
| 171 |
+
},
|
| 172 |
+
{
|
| 173 |
+
"id": "SOR-97-234-s7.2",
|
| 174 |
+
"act_code": "SOR-97-234",
|
| 175 |
+
"act_short": "CDSA Police Enforcement Regs",
|
| 176 |
+
"act_name": "Controlled Drugs and Substances Act (Police Enforcement) Regulations",
|
| 177 |
+
"section": "7.2",
|
| 178 |
+
"marginal_note": "Direction and control",
|
| 179 |
+
"part": "",
|
| 180 |
+
"division": "",
|
| 181 |
+
"heading": "Provisions of the Precursor Control Regulations",
|
| 182 |
+
"text": "7.2 A person is exempt from the application of subsections 6(1) and (2) and 9(1), section 10, subsections 47(1) and 57(1) and section 88 of the Precursor Control Regulations if the person engages or attempts to engage in conduct referred to in any of those provisions and the person acts under the direction and control of a member of a police force who meets the conditions set out in paragraphs 7.1(a) and (b).",
|
| 183 |
+
"history": "SOR/2005-72, s. 5",
|
| 184 |
+
"last_amended": "2006-03-22",
|
| 185 |
+
"current_to": "2022-07-25",
|
| 186 |
+
"citation": "CDSA Police Enforcement Regs, s. 7.2",
|
| 187 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-97-234/section-7.2.html"
|
| 188 |
+
},
|
| 189 |
+
{
|
| 190 |
+
"id": "SOR-97-234-s8",
|
| 191 |
+
"act_code": "SOR-97-234",
|
| 192 |
+
"act_short": "CDSA Police Enforcement Regs",
|
| 193 |
+
"act_name": "Controlled Drugs and Substances Act (Police Enforcement) Regulations",
|
| 194 |
+
"section": "8",
|
| 195 |
+
"marginal_note": "State drugs",
|
| 196 |
+
"part": "",
|
| 197 |
+
"division": "",
|
| 198 |
+
"heading": "Section 5 of the Act — Trafficking",
|
| 199 |
+
"text": "8\n(1) Subject to section 15, a member of a police force is exempt from the application of section 5 of the Act where the member engages or attempts to engage in conduct referred to in that section that involves a substance that has been forfeited to Her Majesty, that is imported in accordance with section 11 of these Regulations or that is produced in accordance with section 13 of these Regulations, if the member has been issued a certificate.\n(2) [Conditions for issuing certificate] The appropriate police officer may issue a certificate for a period not exceeding six months for the purposes of subsection (1) to a member of a police force where the member\n(a) is an active member of the police force; and\n(b) is acting in the course of the member’s responsibilities for the purposes of a particular investigation.",
|
| 200 |
+
"history": "SOR/2005-72, s. 17(F)",
|
| 201 |
+
"last_amended": "2006-03-22",
|
| 202 |
+
"current_to": "2022-07-25",
|
| 203 |
+
"citation": "CDSA Police Enforcement Regs, s. 8",
|
| 204 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-97-234/section-8.html"
|
| 205 |
+
},
|
| 206 |
+
{
|
| 207 |
+
"id": "SOR-97-234-s9",
|
| 208 |
+
"act_code": "SOR-97-234",
|
| 209 |
+
"act_short": "CDSA Police Enforcement Regs",
|
| 210 |
+
"act_name": "Controlled Drugs and Substances Act (Police Enforcement) Regulations",
|
| 211 |
+
"section": "9",
|
| 212 |
+
"marginal_note": "Direction and control",
|
| 213 |
+
"part": "",
|
| 214 |
+
"division": "",
|
| 215 |
+
"heading": "Section 5 of the Act — Trafficking",
|
| 216 |
+
"text": "9 Subject to section 16, a person is exempt from the application of section 5 of the Act where the person engages or attempts to engage in conduct referred to in that section that involves a substance that has been forfeited to Her Majesty, that is imported in accordance with section 11 of these Regulations or that is produced in accordance with section 13 of these Regulations, if the person\n(a) acts under the direction and control of a member of a police force who meets the conditions set out in paragraphs 8(2)(a) and (b); and\n(b) acts to assist the member referred to in paragraph (a) in the course of the particular investigation.",
|
| 217 |
+
"history": "SOR/2005-72, s. 6",
|
| 218 |
+
"last_amended": "2006-03-22",
|
| 219 |
+
"current_to": "2022-07-25",
|
| 220 |
+
"citation": "CDSA Police Enforcement Regs, s. 9",
|
| 221 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-97-234/section-9.html"
|
| 222 |
+
},
|
| 223 |
+
{
|
| 224 |
+
"id": "SOR-97-234-s10",
|
| 225 |
+
"act_code": "SOR-97-234",
|
| 226 |
+
"act_short": "CDSA Police Enforcement Regs",
|
| 227 |
+
"act_name": "Controlled Drugs and Substances Act (Police Enforcement) Regulations",
|
| 228 |
+
"section": "10",
|
| 229 |
+
"marginal_note": "Controlled deliveries",
|
| 230 |
+
"part": "",
|
| 231 |
+
"division": "",
|
| 232 |
+
"heading": "Section 6 of the Act — Importation or Exportation",
|
| 233 |
+
"text": "10 For the purposes of subsection 11(1) and section 12, a substance requested of and obtained directly from a foreign state does not include a substance that has, for the purpose of identifying any person involved in the commission of an offence under the Act or any other Act of Parliament or a conspiracy to commit such an offence, been allowed to pass out of or through a foreign state, with the knowledge and under the supervision of that state's competent authorities.",
|
| 234 |
+
"history": "SOR/2005-72, s. 7",
|
| 235 |
+
"last_amended": "2006-03-22",
|
| 236 |
+
"current_to": "2022-07-25",
|
| 237 |
+
"citation": "CDSA Police Enforcement Regs, s. 10",
|
| 238 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-97-234/section-10.html"
|
| 239 |
+
},
|
| 240 |
+
{
|
| 241 |
+
"id": "SOR-97-234-s11",
|
| 242 |
+
"act_code": "SOR-97-234",
|
| 243 |
+
"act_short": "CDSA Police Enforcement Regs",
|
| 244 |
+
"act_name": "Controlled Drugs and Substances Act (Police Enforcement) Regulations",
|
| 245 |
+
"section": "11",
|
| 246 |
+
"marginal_note": "State drugs",
|
| 247 |
+
"part": "",
|
| 248 |
+
"division": "",
|
| 249 |
+
"heading": "Section 6 of the Act — Importation or Exportation",
|
| 250 |
+
"text": "11\n(1) A member of a police force is exempt from the application of section 6 of the Act where the member engages or attempts to engage in conduct referred to in that section that involves a substance that has been forfeited to Her Majesty, that is produced in accordance with section 13 of these Regulations or that has been requested of and obtained directly from a foreign state, if the member has been issued a certificate.\n(2) [Conditions for issuing certificate] The Assistant Commissioner of the RCMP in charge of drug enforcement may issue a certificate for a period not exceeding six months for the purposes of subsection (1) where the member\n(a) is an active member of the police force; and\n(b) is acting in the course of the member’s responsibilities for the purposes of a particular investigation in which the RCMP participates.",
|
| 251 |
+
"history": "SOR/2005-72, ss. 16(F), 17(F)",
|
| 252 |
+
"last_amended": "2006-03-22",
|
| 253 |
+
"current_to": "2022-07-25",
|
| 254 |
+
"citation": "CDSA Police Enforcement Regs, s. 11",
|
| 255 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-97-234/section-11.html"
|
| 256 |
+
},
|
| 257 |
+
{
|
| 258 |
+
"id": "SOR-97-234-s12",
|
| 259 |
+
"act_code": "SOR-97-234",
|
| 260 |
+
"act_short": "CDSA Police Enforcement Regs",
|
| 261 |
+
"act_name": "Controlled Drugs and Substances Act (Police Enforcement) Regulations",
|
| 262 |
+
"section": "12",
|
| 263 |
+
"marginal_note": "Direction and control",
|
| 264 |
+
"part": "",
|
| 265 |
+
"division": "",
|
| 266 |
+
"heading": "Section 6 of the Act — Importation or Exportation",
|
| 267 |
+
"text": "12 A person is exempt from the application of section 6 of the Act where the person engages or attempts to engage in conduct referred to in that section that involves a substance that has been forfeited to Her Majesty, that is produced in accordance with section 13 of these Regulations or that has been requested of and obtained directly from a foreign state, if the person\n(a) acts under the direction and control of a member of a police force who meets the conditions set out in paragraphs 11(2)(a) and (b); and\n(b) acts to assist the member referred to in paragraph (a) in the course of the particular investigation.",
|
| 268 |
+
"history": "SOR/2005-72, s. 8",
|
| 269 |
+
"last_amended": "2006-03-22",
|
| 270 |
+
"current_to": "2022-07-25",
|
| 271 |
+
"citation": "CDSA Police Enforcement Regs, s. 12",
|
| 272 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-97-234/section-12.html"
|
| 273 |
+
},
|
| 274 |
+
{
|
| 275 |
+
"id": "SOR-97-234-s13",
|
| 276 |
+
"act_code": "SOR-97-234",
|
| 277 |
+
"act_short": "CDSA Police Enforcement Regs",
|
| 278 |
+
"act_name": "Controlled Drugs and Substances Act (Police Enforcement) Regulations",
|
| 279 |
+
"section": "13",
|
| 280 |
+
"marginal_note": "State drugs",
|
| 281 |
+
"part": "",
|
| 282 |
+
"division": "",
|
| 283 |
+
"heading": "Section 7 of the Act — Production",
|
| 284 |
+
"text": "13\n(1) Subject to section 15, a member of a police force is exempt from the application of section 7 of the Act where the member engages or attempts to engage in conduct referred to in that section that involves a substance that has been forfeited to Her Majesty or that is imported in accordance with section 11 of these Regulations, if the member has been issued a certificate.\n(2) [Conditions for issuing certificate] The appropriate police officer may issue a certificate for a period not exceeding one year for the purposes of subsection (1) to a member of a police force where the member\n(a) is an active member of the police force; and\n(b) is acting in the course of the member’s responsibilities for the purposes of a particular investigation.",
|
| 285 |
+
"history": "SOR/2005-72, s. 17(F)",
|
| 286 |
+
"last_amended": "2006-03-22",
|
| 287 |
+
"current_to": "2022-07-25",
|
| 288 |
+
"citation": "CDSA Police Enforcement Regs, s. 13",
|
| 289 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-97-234/section-13.html"
|
| 290 |
+
},
|
| 291 |
+
{
|
| 292 |
+
"id": "SOR-97-234-s14",
|
| 293 |
+
"act_code": "SOR-97-234",
|
| 294 |
+
"act_short": "CDSA Police Enforcement Regs",
|
| 295 |
+
"act_name": "Controlled Drugs and Substances Act (Police Enforcement) Regulations",
|
| 296 |
+
"section": "14",
|
| 297 |
+
"marginal_note": "Direction and control",
|
| 298 |
+
"part": "",
|
| 299 |
+
"division": "",
|
| 300 |
+
"heading": "Section 7 of the Act — Production",
|
| 301 |
+
"text": "14 Subject to section 16, a person is exempt from the application of section 7 of the Act where the person engages or attempts to engage in conduct referred to in that section that involves a substance that has been forfeited to Her Majesty or that is imported in accordance with section 11 of these Regulations, if the person\n(a) acts under the direction and control of a member of a police force who meets the conditions set out in paragraphs 13(2)(a) and (b); and\n(b) acts to assist the member referred to in paragraph (a) in the course of the particular investigation.",
|
| 302 |
+
"history": "SOR/2007-228, s. 1",
|
| 303 |
+
"last_amended": "2007-10-25",
|
| 304 |
+
"current_to": "2022-07-25",
|
| 305 |
+
"citation": "CDSA Police Enforcement Regs, s. 14",
|
| 306 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-97-234/section-14.html"
|
| 307 |
+
},
|
| 308 |
+
{
|
| 309 |
+
"id": "SOR-97-234-s15",
|
| 310 |
+
"act_code": "SOR-97-234",
|
| 311 |
+
"act_short": "CDSA Police Enforcement Regs",
|
| 312 |
+
"act_name": "Controlled Drugs and Substances Act (Police Enforcement) Regulations",
|
| 313 |
+
"section": "15",
|
| 314 |
+
"marginal_note": "Offering to engage",
|
| 315 |
+
"part": "",
|
| 316 |
+
"division": "",
|
| 317 |
+
"heading": "Section 5 or 7 of the Act in Respect of Offering to Engage",
|
| 318 |
+
"text": "15 A member of a police force who engages in conduct referred to in section 5 or 7 of the Act by offering to engage in that conduct is exempt, in respect of offering to engage in that conduct, from the application of section 5 or 7 of the Act, if the member\n(a) is an active member of the police force; and\n(b) is acting in the course of the member’s responsibilities for the purposes of a particular investigation.",
|
| 319 |
+
"history": "SOR/2005-72, ss. 9(F), 17(F)",
|
| 320 |
+
"last_amended": "2006-03-22",
|
| 321 |
+
"current_to": "2022-07-25",
|
| 322 |
+
"citation": "CDSA Police Enforcement Regs, s. 15",
|
| 323 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-97-234/section-15.html"
|
| 324 |
+
},
|
| 325 |
+
{
|
| 326 |
+
"id": "SOR-97-234-s16",
|
| 327 |
+
"act_code": "SOR-97-234",
|
| 328 |
+
"act_short": "CDSA Police Enforcement Regs",
|
| 329 |
+
"act_name": "Controlled Drugs and Substances Act (Police Enforcement) Regulations",
|
| 330 |
+
"section": "16",
|
| 331 |
+
"marginal_note": "Direction and control",
|
| 332 |
+
"part": "",
|
| 333 |
+
"division": "",
|
| 334 |
+
"heading": "Section 5 or 7 of the Act in Respect of Offering to Engage",
|
| 335 |
+
"text": "16 A person who engages in conduct referred to in section 5 or 7 of the Act by offering to engage in that conduct is exempt, in respect of offering to engage in that conduct, from the application of section 5 or 7 of the Act, if the person\n(a) acts under the direction and control of a member of a police force who meets the conditions set out in paragraphs 15(a) and (b); and\n(b) acts to assist the member referred to in paragraph (a) in the course of the particular investigation.",
|
| 336 |
+
"history": "SOR/2005-72, s. 10",
|
| 337 |
+
"last_amended": "2006-03-22",
|
| 338 |
+
"current_to": "2022-07-25",
|
| 339 |
+
"citation": "CDSA Police Enforcement Regs, s. 16",
|
| 340 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-97-234/section-16.html"
|
| 341 |
+
},
|
| 342 |
+
{
|
| 343 |
+
"id": "SOR-97-234-s17",
|
| 344 |
+
"act_code": "SOR-97-234",
|
| 345 |
+
"act_short": "CDSA Police Enforcement Regs",
|
| 346 |
+
"act_name": "Controlled Drugs and Substances Act (Police Enforcement) Regulations",
|
| 347 |
+
"section": "17",
|
| 348 |
+
"marginal_note": "Information in certificate",
|
| 349 |
+
"part": "",
|
| 350 |
+
"division": "",
|
| 351 |
+
"heading": "Certificate",
|
| 352 |
+
"text": "17 A certificate issued under section 8, 11 or 13 shall identify the member of the police force to which it applies, the duration of the exemption and the particular investigation to which it relates.",
|
| 353 |
+
"history": "",
|
| 354 |
+
"last_amended": "2006-03-22",
|
| 355 |
+
"current_to": "2022-07-25",
|
| 356 |
+
"citation": "CDSA Police Enforcement Regs, s. 17",
|
| 357 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-97-234/section-17.html"
|
| 358 |
+
},
|
| 359 |
+
{
|
| 360 |
+
"id": "SOR-97-234-s18",
|
| 361 |
+
"act_code": "SOR-97-234",
|
| 362 |
+
"act_short": "CDSA Police Enforcement Regs",
|
| 363 |
+
"act_name": "Controlled Drugs and Substances Act (Police Enforcement) Regulations",
|
| 364 |
+
"section": "18",
|
| 365 |
+
"marginal_note": "Revocation",
|
| 366 |
+
"part": "",
|
| 367 |
+
"division": "",
|
| 368 |
+
"heading": "Revocation of Certificate",
|
| 369 |
+
"text": "18\n(1) A certificate issued under section 8, 11 or 13 is revoked on the earliest of\n(a) the date on which the appropriate police officer who issued the certificate revokes it,\n(b) the date on which the member to whom it was issued is no longer an active member of the police force,\n(c) the date on which the member to whom it was issued is no longer acting in the course of the member’s responsibilities for the purposes of the particular investigation to which the certificate relates,\n(d) the date on which the particular investigation to which the certificate relates has been completed, or\n(e) the date on which the certificate expires.\n(2) [Notice] The appropriate police officer shall notify the member to whom a certificate was issued of the revocation on the day on which the certificate is revoked pursuant to paragraph (1)(a), (c) or (d).",
|
| 370 |
+
"history": "SOR/2005-72, s. 17(F)",
|
| 371 |
+
"last_amended": "2006-03-22",
|
| 372 |
+
"current_to": "2022-07-25",
|
| 373 |
+
"citation": "CDSA Police Enforcement Regs, s. 18",
|
| 374 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-97-234/section-18.html"
|
| 375 |
+
},
|
| 376 |
+
{
|
| 377 |
+
"id": "SOR-97-234-s18.1 and 18.2",
|
| 378 |
+
"act_code": "SOR-97-234",
|
| 379 |
+
"act_short": "CDSA Police Enforcement Regs",
|
| 380 |
+
"act_name": "Controlled Drugs and Substances Act (Police Enforcement) Regulations",
|
| 381 |
+
"section": "18.1 and 18.2",
|
| 382 |
+
"marginal_note": "",
|
| 383 |
+
"part": "",
|
| 384 |
+
"division": "",
|
| 385 |
+
"heading": "Other General Exemptions",
|
| 386 |
+
"text": "18.1 and 18.2 [Repealed, SOR/2005-72, s. 11]",
|
| 387 |
+
"history": "",
|
| 388 |
+
"last_amended": "2006-03-22",
|
| 389 |
+
"current_to": "2022-07-25",
|
| 390 |
+
"citation": "CDSA Police Enforcement Regs, s. 18.1 and 18.2",
|
| 391 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-97-234/section-18.1 and 18.2.html"
|
| 392 |
+
},
|
| 393 |
+
{
|
| 394 |
+
"id": "SOR-97-234-s19",
|
| 395 |
+
"act_code": "SOR-97-234",
|
| 396 |
+
"act_short": "CDSA Police Enforcement Regs",
|
| 397 |
+
"act_name": "Controlled Drugs and Substances Act (Police Enforcement) Regulations",
|
| 398 |
+
"section": "19",
|
| 399 |
+
"marginal_note": "Conspiracy",
|
| 400 |
+
"part": "",
|
| 401 |
+
"division": "",
|
| 402 |
+
"heading": "Other General Exemptions",
|
| 403 |
+
"text": "19 A member of a police force is exempt from the application of the provisions that create the offence of conspiracy to commit, being an accessory after the fact in relation to, or any counselling in relation to, an offence under subsection 4(2) or section 5, 6 or 7 of the Act if the member\n(a) is an active member of the police force;\n(b) is acting in the course of the member’s responsibilities for the purposes of a particular investigation; and\n(c) engages in conduct that, but for the application of this section, would constitute a conspiracy to commit, being an accessory after the fact in relation to, or any counselling in relation to, an offence under subsection 4(2) or section 5, 6 or 7 of the Act.",
|
| 404 |
+
"history": "SOR/97-281, s. 1; SOR/2005-72, ss. 12, 17(F)",
|
| 405 |
+
"last_amended": "2006-03-22",
|
| 406 |
+
"current_to": "2022-07-25",
|
| 407 |
+
"citation": "CDSA Police Enforcement Regs, s. 19",
|
| 408 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-97-234/section-19.html"
|
| 409 |
+
},
|
| 410 |
+
{
|
| 411 |
+
"id": "SOR-97-234-s20",
|
| 412 |
+
"act_code": "SOR-97-234",
|
| 413 |
+
"act_short": "CDSA Police Enforcement Regs",
|
| 414 |
+
"act_name": "Controlled Drugs and Substances Act (Police Enforcement) Regulations",
|
| 415 |
+
"section": "20",
|
| 416 |
+
"marginal_note": "Direction and control",
|
| 417 |
+
"part": "",
|
| 418 |
+
"division": "",
|
| 419 |
+
"heading": "Other General Exemptions",
|
| 420 |
+
"text": "20 A person is exempt from the application of the provisions that create the offence of conspiracy to commit, being an accessory after the fact in relation to, or any counselling in relation to, an offence under subsection 4(2) or section 5, 6 or 7 of the Act if the person\n(a) acts under the direction and control of a member of a police force who\n(i) is an active member of the police force, and\n(ii) is acting in the course of the member’s responsibilities for the purposes of a particular investigation;\n(b) acts to assist the member in the course of the particular investigation; and\n(c) engages in conduct that, but for the application of this section, would constitute a conspiracy to commit, being an accessory after the fact in relation to, or any counselling in relation to, an offence under subsection 4(2) or section 5, 6 or 7 of the Act.",
|
| 421 |
+
"history": "SOR/97-281, s. 1; SOR/2005-72, ss. 13, 17(F)",
|
| 422 |
+
"last_amended": "2006-03-22",
|
| 423 |
+
"current_to": "2022-07-25",
|
| 424 |
+
"citation": "CDSA Police Enforcement Regs, s. 20",
|
| 425 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-97-234/section-20.html"
|
| 426 |
+
},
|
| 427 |
+
{
|
| 428 |
+
"id": "SOR-97-234-s21",
|
| 429 |
+
"act_code": "SOR-97-234",
|
| 430 |
+
"act_short": "CDSA Police Enforcement Regs",
|
| 431 |
+
"act_name": "Controlled Drugs and Substances Act (Police Enforcement) Regulations",
|
| 432 |
+
"section": "21",
|
| 433 |
+
"marginal_note": "Forfeited substances",
|
| 434 |
+
"part": "",
|
| 435 |
+
"division": "",
|
| 436 |
+
"heading": "Detention of Forfeited Substances",
|
| 437 |
+
"text": "21\n(1) The chief or appropriate officer shall, as soon as practicable but not later than 60 days after a forfeited controlled substance or precursor is no longer required for the proceeding in respect of which it was seized, where the controlled substance or precursor is required for the purposes of conducting investigations under the Act or any other Act of Parliament, inform the Minister in writing of that requirement.\n(2) [Secure location] Every controlled substance or precursor referred to in subsection (1) shall be kept in a secure location while not being used for the purposes of conducting investigations under the Act or any other Act of Parliament.\n(3) [Transfer] The chief or appropriate police officer of a police force is exempt from the application of section 5 of the Act if that person transfers any controlled substance or precursor referred to in subsection (1) to the chief or appropriate police officer of another police force and if the chief or appropriate police officer of that other police force requests the transfer for the purposes of a particular investigation.\n(4) [Inform Minister] Where a transfer is conducted pursuant to subsection (3), the chief or appropriate police officer who\n(a) makes the transfer shall inform the Minister of the transfer, as soon as practicable after the request for the transfer has been received; and\n(b) receives the controlled substance or precursor shall inform the Minister of its receipt, as soon as practicable after the receipt.\n(5) [Directions] If a controlled substance or precursor referred to in subsection (1) is no longer required for the purposes of conducting investigations under the Act or any other Act of Parliament, the chief or appropriate police officer shall seek the directions of the Minister and dispose of or otherwise deal with the controlled substance or precursor in accordance with the Minister's directions.\n(6) [Substances not required] If a forfeited controlled substance or precursor is no longer required for the proceeding in respect of which it was seized and is not required for the purposes of conducting investigations under the Act or any other Act of Parliament, the chief or appropriate police officer shall, as soon as practicable,\n(a) in writing seek directions from the Minister respecting the disposal of or otherwise dealing with the controlled substance or precursor, unless the Minister has previously given such directions; and\n(b) dispose of or otherwise deal with the controlled substance or precursor in accordance with the Minister's directions.",
|
| 438 |
+
"history": "SOR/2005-72, s. 14",
|
| 439 |
+
"last_amended": "2006-03-22",
|
| 440 |
+
"current_to": "2022-07-25",
|
| 441 |
+
"citation": "CDSA Police Enforcement Regs, s. 21",
|
| 442 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-97-234/section-21.html"
|
| 443 |
+
},
|
| 444 |
+
{
|
| 445 |
+
"id": "SOR-97-234-s22",
|
| 446 |
+
"act_code": "SOR-97-234",
|
| 447 |
+
"act_short": "CDSA Police Enforcement Regs",
|
| 448 |
+
"act_name": "Controlled Drugs and Substances Act (Police Enforcement) Regulations",
|
| 449 |
+
"section": "22",
|
| 450 |
+
"marginal_note": "Annual report",
|
| 451 |
+
"part": "",
|
| 452 |
+
"division": "",
|
| 453 |
+
"heading": "Reports",
|
| 454 |
+
"text": "22\n(1) The chief or appropriate police officer shall submit to the Minister of Public Safety and Emergency Preparedness and to the Minister, within three months after the end of every calendar year, a report in written or electronic format containing the information set out in subsection (3), in respect of each of the following controlled substances or precursors that came into the possession of the police force in the course of a particular investigation completed during the calendar year, namely,\n(a) a controlled substance or precursor imported or exported in accordance with section 11;\n(b) a controlled substance produced in accordance with section 13; and\n(c) a forfeited controlled substance or precursor referred to in section 21.\n(2) [Copy of report] The chief or appropriate police officer of a police force other than the RCMP shall also send a copy of the report referred to in subsection (1) to the provincial minister responsible for the police force.\n(3) [Contents of report] The report shall indicate the name and total quantity of each controlled substance or precursor and the quantity, in respect of each controlled substance or precursor, that was forfeited, imported, exported, produced or destroyed, as applicable.\n(4) [Additional report] The chief or appropriate police officer of a police force shall also submit, on request, a report in written or electronic format to the Minister respecting the controlled substances or precursors referred to in subsection (1) as required for the following purposes:\n(a) to ensure the protection of the public against potential public health risks caused by the potential misuse or diversion of those substances;\n(b) to collect data required for studies and research;\n(c) to meet international obligations of the Government of Canada; and\n(d) for compliance with these Regulations.",
|
| 455 |
+
"history": "SOR/2022-174, s. 5",
|
| 456 |
+
"last_amended": "2022-07-15",
|
| 457 |
+
"current_to": "2022-07-25",
|
| 458 |
+
"citation": "CDSA Police Enforcement Regs, s. 22",
|
| 459 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-97-234/section-22.html"
|
| 460 |
+
},
|
| 461 |
+
{
|
| 462 |
+
"id": "SOR-97-234-s23",
|
| 463 |
+
"act_code": "SOR-97-234",
|
| 464 |
+
"act_short": "CDSA Police Enforcement Regs",
|
| 465 |
+
"act_name": "Controlled Drugs and Substances Act (Police Enforcement) Regulations",
|
| 466 |
+
"section": "23",
|
| 467 |
+
"marginal_note": "Report of substances no longer in possession",
|
| 468 |
+
"part": "",
|
| 469 |
+
"division": "",
|
| 470 |
+
"heading": "Reports",
|
| 471 |
+
"text": "23\n(1) The chief or appropriate police officer shall submit a report in written or electronic format to the Minister of Public Safety and Emergency Preparedness and the Minister containing the information required by subsection (3), respecting every controlled substance or precursor referred to in subsection 21(1) that is lost, stolen or otherwise no longer in the possession of the police force, as soon as practicable after the substance is lost, stolen or no longer in the possession of the police force.\n(2) [Copy of report] The chief or appropriate police officer of a police force other than the RCMP shall also send a copy of the report referred to in subsection (1) to the provincial minister responsible for the police force.\n(3) [Contents of report] The report shall include the following information:\n(a) the name and quantity of each controlled substance or precursor;\n(b) the date of forfeiture, importation or exportation of each controlled substance or precursor, or the production of each controlled substance, as applicable; and\n(c) the date on which and an explanation of the circumstances in which the controlled substance or precursor was lost or stolen or ceased to be in the possession of the police force.",
|
| 472 |
+
"history": "SOR/2005-72, s. 15; SOR/2022-174, s. 5",
|
| 473 |
+
"last_amended": "2022-07-15",
|
| 474 |
+
"current_to": "2022-07-25",
|
| 475 |
+
"citation": "CDSA Police Enforcement Regs, s. 23",
|
| 476 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-97-234/section-23.html"
|
| 477 |
+
},
|
| 478 |
+
{
|
| 479 |
+
"id": "SOR-97-234-s24",
|
| 480 |
+
"act_code": "SOR-97-234",
|
| 481 |
+
"act_short": "CDSA Police Enforcement Regs",
|
| 482 |
+
"act_name": "Controlled Drugs and Substances Act (Police Enforcement) Regulations",
|
| 483 |
+
"section": "24",
|
| 484 |
+
"marginal_note": "Transitional",
|
| 485 |
+
"part": "",
|
| 486 |
+
"division": "",
|
| 487 |
+
"heading": "Transitional Provision",
|
| 488 |
+
"text": "24 These Regulations apply in respect of every controlled substance or precursor that was forfeited to Her Majesty before the coming into force of these Regulations and that is in the possession of a police force, except that, in respect of subsection 21(1), the reference to 60 days shall be read as a reference to 120 days after the coming into force of these Regulations.",
|
| 489 |
+
"history": "",
|
| 490 |
+
"last_amended": "2006-03-22",
|
| 491 |
+
"current_to": "2022-07-25",
|
| 492 |
+
"citation": "CDSA Police Enforcement Regs, s. 24",
|
| 493 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-97-234/section-24.html"
|
| 494 |
+
},
|
| 495 |
+
{
|
| 496 |
+
"id": "SOR-97-234-s*25",
|
| 497 |
+
"act_code": "SOR-97-234",
|
| 498 |
+
"act_short": "CDSA Police Enforcement Regs",
|
| 499 |
+
"act_name": "Controlled Drugs and Substances Act (Police Enforcement) Regulations",
|
| 500 |
+
"section": "*25",
|
| 501 |
+
"marginal_note": "Coming into force",
|
| 502 |
+
"part": "",
|
| 503 |
+
"division": "",
|
| 504 |
+
"heading": "Coming into Force",
|
| 505 |
+
"text": "*25 These Regulations come into force on the date on which the Controlled Drugs and Substances Act comes into force.\n* [Note: Regulations in force May 14, 1997, see SI/97-47.]",
|
| 506 |
+
"history": "",
|
| 507 |
+
"last_amended": "2006-03-22",
|
| 508 |
+
"current_to": "2022-07-25",
|
| 509 |
+
"citation": "CDSA Police Enforcement Regs, s. *25",
|
| 510 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-97-234/section-*25.html"
|
| 511 |
+
}
|
| 512 |
+
]
|
data/processed/agreements.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/processed/directives.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|
data/processed/dmemos.json
ADDED
|
The diff for this file is too large to render.
See raw diff
|
|
|