Corpus hygiene + coverage batch: drop amendment stubs, add 8 instruments, currency & guidance fixes
Browse filesActs on the audit's verified findings. Net of an eval-gated revert (below),
retrieval holds at Hit@1 0.81 / Hit@3 0.94 / Hit@5 0.97 / Hit@10 0.99 / MRR 0.87
on 159 questions -- essentially the prior baseline with far more corpus.
1. Drop content-free amendment stubs (ingest.py _AMENDMENT_STUB): 276 sections
whose whole body was a marker like "30 [Amendment]" (117 in the CBSA Act)
were being indexed and rendered as live, in-force law. Now skipped at ingest.
([Repealed,...] sections are still kept and flagged.)
2. Add 8 in-scope instruments via the Justice Laws XML pipeline (config.py):
Preclearance Act, 2016 (P-19.32); WAPPRIITA (W-8.5) + Wild Animal and Plant
Trade Regs (SOR-96-263) -- the CITES border-enforcement basis; and the Customs
Act operational regs -- Reporting of Imported Goods (SOR-86-873), Accounting
(SOR-86-1062), Designated Provisions (SOR-2002-336, the AMPS hook), Bonded
Warehouses (SOR-96-46), Returning Persons Exemption (SOR-98-58). 5 gold
questions added (Preclearance, WAPPRIITA, reporting, returning-persons).
3. Backfill blank currency: the Foreign Service Directives (directive.py now
recovers the effective date from the page; 68 chunks were 'n/a') and PSMIP
(benefits.py edition set to "undated (TBS web edition)").
4. Sub-chunk long directive/agreement sections to the embed window (-p<k>
pieces; index._source_key caps same-section pieces of any primary type).
NOTE: the same change for D-memoranda was trialled and REVERTED -- it tripled
memo chunk-count and gave memos enough surface to out-rank the statutes they
relate to (eval Hit@5 0.98 -> 0.96, 7 misses). The memo-tail recall gap is
better solved later by multi-vector embedding than more competing chunks.
5. (covered by 2.)
6. Age-aware guidance warning (server.py _guidance_age_note): D-memo / directive
/ benefit results older than ~5 years now carry a "verify, figures may have
changed" note (a 2013 duty-free-limits memo no longer reads like current law).
Blank currency renders "not stated by the source", not a bare "n/a".
7. Query logging (server._log_query, gated by CANLEX_LOG_DIR) + canlex/loganalyze.py
to mine real misses -- the only unbiased corpus-gap signal, since the eval set
is maintainer-authored. Off by default; logs query + outcome only.
Corpus 19,551 -> 20,387 chunks. 57 tests pass (+ amendment-stub and date-fallback
cases). Item 8 (web-app confidence badge) ships separately to the web Space.
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
- canlex/agreement.py +46 -18
- canlex/benefits.py +5 -1
- canlex/config.py +46 -0
- canlex/directive.py +66 -18
- canlex/dmemo.py +6 -0
- canlex/index.py +11 -7
- canlex/ingest.py +18 -0
- canlex/loganalyze.py +81 -0
- canlex/server.py +76 -4
- data/eval/questions.json +5 -1
- data/processed/C-1.4.json +0 -2223
- data/processed/C-24.5.json +0 -1254
- data/processed/H-3.3.json +0 -19
- data/processed/I-2.5.json +0 -513
- data/processed/P-19.32.json +1237 -0
- data/processed/P-24.501.json +0 -19
- data/processed/Q-1.1.json +0 -38
- data/processed/SOR-2002-336.json +59 -0
- data/processed/SOR-2012-230.json +0 -418
- data/processed/SOR-2018-108.json +0 -589
- data/processed/SOR-2018-144.json +0 -171
- data/processed/SOR-86-1062.json +876 -0
- data/processed/SOR-86-873.json +1484 -0
- data/processed/SOR-96-263.json +534 -0
- data/processed/SOR-96-46.json +439 -0
- data/processed/SOR-98-58.json +135 -0
- data/processed/W-8.5.json +1123 -0
- data/processed/agreements.json +0 -0
- data/processed/benefits.json +68 -68
- data/processed/directives.json +0 -0
- tests/test_index.py +1 -1
- tests/test_ingest.py +13 -0
|
@@ -55,6 +55,25 @@ def _fetch(url, dest, force=False):
|
|
| 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 = []
|
|
@@ -94,6 +113,7 @@ def parse_agreement(html, code):
|
|
| 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
|
|
@@ -120,24 +140,32 @@ def parse_agreement(html, code):
|
|
| 120 |
number, note = "", text
|
| 121 |
citation = meta["cite"]
|
| 122 |
|
| 123 |
-
|
| 124 |
-
|
| 125 |
-
|
| 126 |
-
|
| 127 |
-
|
| 128 |
-
|
| 129 |
-
"
|
| 130 |
-
|
| 131 |
-
|
| 132 |
-
|
| 133 |
-
|
| 134 |
-
|
| 135 |
-
|
| 136 |
-
|
| 137 |
-
|
| 138 |
-
|
| 139 |
-
|
| 140 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 141 |
return chunks
|
| 142 |
|
| 143 |
|
|
|
|
| 55 |
return dest.read_bytes()
|
| 56 |
|
| 57 |
|
| 58 |
+
_PIECE_TARGET = 1800 # keep pieces under the embedder's ~2000-char window
|
| 59 |
+
|
| 60 |
+
|
| 61 |
+
def _split(text, target=_PIECE_TARGET):
|
| 62 |
+
"""Split long text into ~target-sized pieces at line boundaries."""
|
| 63 |
+
if len(text) <= target:
|
| 64 |
+
return [text]
|
| 65 |
+
parts, buf, size = [], [], 0
|
| 66 |
+
for line in text.split("\n"):
|
| 67 |
+
if size + len(line) > target and buf:
|
| 68 |
+
parts.append("\n".join(buf))
|
| 69 |
+
buf, size = [], 0
|
| 70 |
+
buf.append(line)
|
| 71 |
+
size += len(line) + 1
|
| 72 |
+
if buf:
|
| 73 |
+
parts.append("\n".join(buf))
|
| 74 |
+
return parts
|
| 75 |
+
|
| 76 |
+
|
| 77 |
def _block_text(heading):
|
| 78 |
"""Readable text from a heading up to the next h2/h3 (sections unwrapped)."""
|
| 79 |
lines = []
|
|
|
|
| 113 |
|
| 114 |
chunks = []
|
| 115 |
current_part = ""
|
| 116 |
+
sec_idx = 0
|
| 117 |
for h in main.find_all(["h2", "h3"]):
|
| 118 |
if "wb-inv" in (h.get("class") or []):
|
| 119 |
continue
|
|
|
|
| 140 |
number, note = "", text
|
| 141 |
citation = meta["cite"]
|
| 142 |
|
| 143 |
+
sec_idx += 1
|
| 144 |
+
# Split a long article so each piece fits the embed window; pieces share
|
| 145 |
+
# the base id and take a '-p<k>' suffix so the diversity cap groups them.
|
| 146 |
+
pieces = _split(body)
|
| 147 |
+
for k, piece in enumerate(pieces, start=1):
|
| 148 |
+
base = f"agreement-{code}-{sec_idx}"
|
| 149 |
+
chunk_id = base if len(pieces) == 1 else f"{base}-p{k}"
|
| 150 |
+
pnote = note if len(pieces) == 1 else f"{note} (part {k})".strip()
|
| 151 |
+
chunks.append({
|
| 152 |
+
"id": chunk_id,
|
| 153 |
+
"doc_type": "agreement",
|
| 154 |
+
"act_code": code,
|
| 155 |
+
"act_short": meta["short"],
|
| 156 |
+
"act_name": meta["name"],
|
| 157 |
+
"section": number,
|
| 158 |
+
"marginal_note": pnote,
|
| 159 |
+
"part": current_part if h.name == "h3" else "",
|
| 160 |
+
"division": "",
|
| 161 |
+
"heading": "",
|
| 162 |
+
"text": piece,
|
| 163 |
+
"history": "",
|
| 164 |
+
"last_amended": "",
|
| 165 |
+
"current_to": expiry,
|
| 166 |
+
"citation": citation,
|
| 167 |
+
"source_url": meta["url"],
|
| 168 |
+
})
|
| 169 |
return chunks
|
| 170 |
|
| 171 |
|
|
@@ -90,7 +90,11 @@ SOURCES = {
|
|
| 90 |
"url": ("https://www.canada.ca/en/treasury-board-secretariat/services/"
|
| 91 |
"benefit-plans/management-insurance-plan/main-plan-booklet.html"),
|
| 92 |
"label": "Main Plan Booklet",
|
| 93 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
| 94 |
},
|
| 95 |
}
|
| 96 |
|
|
|
|
| 90 |
"url": ("https://www.canada.ca/en/treasury-board-secretariat/services/"
|
| 91 |
"benefit-plans/management-insurance-plan/main-plan-booklet.html"),
|
| 92 |
"label": "Main Plan Booklet",
|
| 93 |
+
# The canada.ca page exposes no machine-readable date (its <time> tags are
|
| 94 |
+
# content dates, not a page revision). Rather than render currency as
|
| 95 |
+
# 'n/a', state plainly that the source is undated so a reader knows to
|
| 96 |
+
# verify rather than assume staleness.
|
| 97 |
+
"edition": "undated (TBS web edition)",
|
| 98 |
},
|
| 99 |
}
|
| 100 |
|
|
@@ -70,6 +70,39 @@ SOURCES = {
|
|
| 70 |
"short": "EIPA", "name": "Export and Import Permits Act", "kind": "act",
|
| 71 |
"xml_url": "https://laws-lois.justice.gc.ca/eng/XML/E-19.xml",
|
| 72 |
"web_base": "https://laws-lois.justice.gc.ca/eng/acts/e-19/"},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 73 |
|
| 74 |
# --- Criminal & financial crime ---
|
| 75 |
"C-46": {
|
|
@@ -189,6 +222,19 @@ SOURCES = {
|
|
| 189 |
"short": "Quarantine Act", "name": "Quarantine Act", "kind": "act",
|
| 190 |
"xml_url": "https://laws-lois.justice.gc.ca/eng/XML/Q-1.1.xml",
|
| 191 |
"web_base": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/"},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 192 |
|
| 193 |
# --- Labour & public service ---
|
| 194 |
"L-2": {
|
|
|
|
| 70 |
"short": "EIPA", "name": "Export and Import Permits Act", "kind": "act",
|
| 71 |
"xml_url": "https://laws-lois.justice.gc.ca/eng/XML/E-19.xml",
|
| 72 |
"web_base": "https://laws-lois.justice.gc.ca/eng/acts/e-19/"},
|
| 73 |
+
"P-19.32": {
|
| 74 |
+
"short": "Preclearance Act", "name": "Preclearance Act, 2016", "kind": "act",
|
| 75 |
+
"xml_url": "https://laws-lois.justice.gc.ca/eng/XML/P-19.32.xml",
|
| 76 |
+
"web_base": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/"},
|
| 77 |
+
# Customs Act operational regulations -- the procedural detail behind the
|
| 78 |
+
# bare Act (reporting, accounting, exemptions, and the designated-provisions
|
| 79 |
+
# regulation that is the legal hook for every AMPS monetary penalty).
|
| 80 |
+
"SOR-86-873": {
|
| 81 |
+
"short": "Reporting of Imported Goods Regs",
|
| 82 |
+
"name": "Reporting of Imported Goods Regulations", "kind": "regulation",
|
| 83 |
+
"xml_url": "https://laws-lois.justice.gc.ca/eng/XML/SOR-86-873.xml",
|
| 84 |
+
"web_base": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/"},
|
| 85 |
+
"SOR-86-1062": {
|
| 86 |
+
"short": "Accounting for Imported Goods Regs",
|
| 87 |
+
"name": "Accounting for Imported Goods and Payment of Duties Regulations",
|
| 88 |
+
"kind": "regulation",
|
| 89 |
+
"xml_url": "https://laws-lois.justice.gc.ca/eng/XML/SOR-86-1062.xml",
|
| 90 |
+
"web_base": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-1062/"},
|
| 91 |
+
"SOR-2002-336": {
|
| 92 |
+
"short": "Designated Provisions (Customs) Regs",
|
| 93 |
+
"name": "Designated Provisions (Customs) Regulations", "kind": "regulation",
|
| 94 |
+
"xml_url": "https://laws-lois.justice.gc.ca/eng/XML/SOR-2002-336.xml",
|
| 95 |
+
"web_base": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2002-336/"},
|
| 96 |
+
"SOR-96-46": {
|
| 97 |
+
"short": "Customs Bonded Warehouses Regs",
|
| 98 |
+
"name": "Customs Bonded Warehouses Regulations", "kind": "regulation",
|
| 99 |
+
"xml_url": "https://laws-lois.justice.gc.ca/eng/XML/SOR-96-46.xml",
|
| 100 |
+
"web_base": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-96-46/"},
|
| 101 |
+
"SOR-98-58": {
|
| 102 |
+
"short": "Returning Persons Exemption Regs",
|
| 103 |
+
"name": "Returning Persons Exemption Regulations", "kind": "regulation",
|
| 104 |
+
"xml_url": "https://laws-lois.justice.gc.ca/eng/XML/SOR-98-58.xml",
|
| 105 |
+
"web_base": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-98-58/"},
|
| 106 |
|
| 107 |
# --- Criminal & financial crime ---
|
| 108 |
"C-46": {
|
|
|
|
| 222 |
"short": "Quarantine Act", "name": "Quarantine Act", "kind": "act",
|
| 223 |
"xml_url": "https://laws-lois.justice.gc.ca/eng/XML/Q-1.1.xml",
|
| 224 |
"web_base": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/"},
|
| 225 |
+
# CITES enforcement at the border -- the basis for seizures of protected
|
| 226 |
+
# wildlife, ivory and exotic-species goods.
|
| 227 |
+
"W-8.5": {
|
| 228 |
+
"short": "WAPPRIITA",
|
| 229 |
+
"name": "Wild Animal and Plant Protection and Regulation of "
|
| 230 |
+
"International and Interprovincial Trade Act", "kind": "act",
|
| 231 |
+
"xml_url": "https://laws-lois.justice.gc.ca/eng/XML/W-8.5.xml",
|
| 232 |
+
"web_base": "https://laws-lois.justice.gc.ca/eng/acts/w-8.5/"},
|
| 233 |
+
"SOR-96-263": {
|
| 234 |
+
"short": "WAPTR",
|
| 235 |
+
"name": "Wild Animal and Plant Trade Regulations", "kind": "regulation",
|
| 236 |
+
"xml_url": "https://laws-lois.justice.gc.ca/eng/XML/SOR-96-263.xml",
|
| 237 |
+
"web_base": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-96-263/"},
|
| 238 |
|
| 239 |
# --- Labour & public service ---
|
| 240 |
"L-2": {
|
|
@@ -29,6 +29,42 @@ 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."""
|
|
@@ -91,8 +127,11 @@ def parse_directive(html, url, title, date):
|
|
| 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:
|
|
@@ -111,24 +150,33 @@ def parse_directive(html, url, title, date):
|
|
| 111 |
# header (citation + note) does not repeat it.
|
| 112 |
number, note = "", text
|
| 113 |
citation = title
|
| 114 |
-
|
| 115 |
-
|
| 116 |
-
|
| 117 |
-
|
| 118 |
-
|
| 119 |
-
|
| 120 |
-
|
| 121 |
-
"
|
| 122 |
-
|
| 123 |
-
|
| 124 |
-
|
| 125 |
-
|
| 126 |
-
|
| 127 |
-
|
| 128 |
-
|
| 129 |
-
|
| 130 |
-
|
| 131 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 132 |
return chunks
|
| 133 |
|
| 134 |
|
|
|
|
| 29 |
return re.sub(r"\s+", " ", text or "").strip()
|
| 30 |
|
| 31 |
|
| 32 |
+
_PIECE_TARGET = 1800 # keep pieces under the embedder's ~2000-char window
|
| 33 |
+
_MONTHS = {m: i for i, m in enumerate(
|
| 34 |
+
["january", "february", "march", "april", "may", "june", "july", "august",
|
| 35 |
+
"september", "october", "november", "december"], start=1)}
|
| 36 |
+
_EFFECTIVE = re.compile(
|
| 37 |
+
r"effective[^.<:]{0,20}?([A-Z][a-z]+)\s+(\d{1,2}),?\s+(\d{4})", re.I)
|
| 38 |
+
|
| 39 |
+
|
| 40 |
+
def _split(text, target=_PIECE_TARGET):
|
| 41 |
+
"""Split long text into ~target-sized pieces at line boundaries."""
|
| 42 |
+
if len(text) <= target:
|
| 43 |
+
return [text]
|
| 44 |
+
parts, buf, size = [], [], 0
|
| 45 |
+
for line in text.split("\n"):
|
| 46 |
+
if size + len(line) > target and buf:
|
| 47 |
+
parts.append("\n".join(buf))
|
| 48 |
+
buf, size = [], 0
|
| 49 |
+
buf.append(line)
|
| 50 |
+
size += len(line) + 1
|
| 51 |
+
if buf:
|
| 52 |
+
parts.append("\n".join(buf))
|
| 53 |
+
return parts
|
| 54 |
+
|
| 55 |
+
|
| 56 |
+
def _page_effective_date(main):
|
| 57 |
+
"""Latest 'effective <Month D, YYYY>' date on a directive page, as ISO.
|
| 58 |
+
Used as a currency fallback when the index gives no date (e.g. the Foreign
|
| 59 |
+
Service Directives, whose chunks otherwise render currency as 'n/a')."""
|
| 60 |
+
best = ""
|
| 61 |
+
for mon, day, year in _EFFECTIVE.findall(main.get_text(" ", strip=True)):
|
| 62 |
+
if mon.lower() in _MONTHS:
|
| 63 |
+
iso = f"{int(year):04d}-{_MONTHS[mon.lower()]:02d}-{int(day):02d}"
|
| 64 |
+
best = max(best, iso)
|
| 65 |
+
return best
|
| 66 |
+
|
| 67 |
+
|
| 68 |
def _fetch(url, dest, force=False):
|
| 69 |
"""Fetch via PowerShell's (.NET) HTTP stack -- some government sites block
|
| 70 |
Python's HTTP client at the TLS layer."""
|
|
|
|
| 127 |
|
| 128 |
code_match = _CODE.search(url)
|
| 129 |
code = code_match.group(1) if code_match else url
|
| 130 |
+
if not date: # recover a currency date from the page
|
| 131 |
+
date = _page_effective_date(main)
|
| 132 |
chunks = []
|
| 133 |
current_part = ""
|
| 134 |
+
sec_idx = 0
|
| 135 |
for h in main.find_all(["h2", "h3"]):
|
| 136 |
text = _norm(h.get_text(" ", strip=True))
|
| 137 |
if not text:
|
|
|
|
| 150 |
# header (citation + note) does not repeat it.
|
| 151 |
number, note = "", text
|
| 152 |
citation = title
|
| 153 |
+
sec_idx += 1
|
| 154 |
+
# Split a long section so each piece fits the embed window; pieces of one
|
| 155 |
+
# section share the base id 'directive-{code}-{sec_idx}' and take a
|
| 156 |
+
# '-p<k>' suffix, so the diversity cap treats them as one source.
|
| 157 |
+
pieces = _split(body)
|
| 158 |
+
for k, piece in enumerate(pieces, start=1):
|
| 159 |
+
base = f"directive-{code}-{sec_idx}"
|
| 160 |
+
chunk_id = base if len(pieces) == 1 else f"{base}-p{k}"
|
| 161 |
+
pnote = note if len(pieces) == 1 else f"{note} (part {k})"
|
| 162 |
+
chunks.append({
|
| 163 |
+
"id": chunk_id,
|
| 164 |
+
"doc_type": "directive",
|
| 165 |
+
"act_code": code,
|
| 166 |
+
"act_short": title,
|
| 167 |
+
"act_name": f"NJC {title}",
|
| 168 |
+
"section": number or text,
|
| 169 |
+
"marginal_note": pnote,
|
| 170 |
+
"part": current_part if h.name == "h3" else "",
|
| 171 |
+
"division": "",
|
| 172 |
+
"heading": "",
|
| 173 |
+
"text": piece,
|
| 174 |
+
"history": "",
|
| 175 |
+
"last_amended": "",
|
| 176 |
+
"current_to": date,
|
| 177 |
+
"citation": citation,
|
| 178 |
+
"source_url": url,
|
| 179 |
+
})
|
| 180 |
return chunks
|
| 181 |
|
| 182 |
|
|
@@ -108,6 +108,12 @@ def parse_memo(html, url):
|
|
| 108 |
body = _render_section(h2)
|
| 109 |
if not body:
|
| 110 |
continue
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 111 |
chunks.append({
|
| 112 |
"id": f"dmemo-{number}-{len(chunks) + 1}",
|
| 113 |
"doc_type": "memorandum",
|
|
|
|
| 108 |
body = _render_section(h2)
|
| 109 |
if not body:
|
| 110 |
continue
|
| 111 |
+
# One chunk per h2 section. (Splitting long memos to the embed window
|
| 112 |
+
# was trialled and reverted: it tripled memo chunk-count and gave
|
| 113 |
+
# D-memoranda enough extra retrieval surface to out-rank the statutes
|
| 114 |
+
# and sibling memos they relate to -- a measured eval regression. The
|
| 115 |
+
# memo-tail recall gap is better addressed later by multi-vector
|
| 116 |
+
# embedding than by more competing chunks.)
|
| 117 |
chunks.append({
|
| 118 |
"id": f"dmemo-{number}-{len(chunks) + 1}",
|
| 119 |
"doc_type": "memorandum",
|
|
@@ -322,15 +322,19 @@ class LegislationIndex:
|
|
| 322 |
instruments, so _ensure_primary does not pull them in as if they were
|
| 323 |
enacted law.
|
| 324 |
|
| 325 |
-
Exception: the pieces of one long section that was split for
|
| 326 |
-
(ids ending '-p<k>') share a key, so the diversity cap stops a
|
| 327 |
-
multi-part provision from filling the result set with its own
|
| 328 |
-
fragments.
|
| 329 |
-
|
|
|
|
|
|
|
|
|
|
| 330 |
c = self.chunks[idx]
|
| 331 |
doc_type = c.get("doc_type", "legislation")
|
| 332 |
-
|
| 333 |
-
|
|
|
|
| 334 |
if doc_type in PRIMARY_DOC_TYPES or doc_type == "benefits":
|
| 335 |
return None
|
| 336 |
if doc_type == "memorandum":
|
|
|
|
| 322 |
instruments, so _ensure_primary does not pull them in as if they were
|
| 323 |
enacted law.
|
| 324 |
|
| 325 |
+
Exception: the pieces of one long section/article that was split for
|
| 326 |
+
embedding (ids ending '-p<k>') share a key, so the diversity cap stops a
|
| 327 |
+
single multi-part provision from filling the result set with its own
|
| 328 |
+
fragments. This applies to the otherwise-uncapped primary types
|
| 329 |
+
(legislation, agreement, directive, delegation): pieces are keyed by
|
| 330 |
+
their shared base id, distinct sections keep distinct keys. (Memoranda
|
| 331 |
+
and case law are already capped at the parent level, so their pieces are
|
| 332 |
+
bounded without a separate key.)"""
|
| 333 |
c = self.chunks[idx]
|
| 334 |
doc_type = c.get("doc_type", "legislation")
|
| 335 |
+
m = _PIECE_ID.search(c.get("id", ""))
|
| 336 |
+
if m and doc_type in PRIMARY_DOC_TYPES:
|
| 337 |
+
return ("piece", c["id"][:m.start()]) # pieces of one chunk together
|
| 338 |
if doc_type in PRIMARY_DOC_TYPES or doc_type == "benefits":
|
| 339 |
return None
|
| 340 |
if doc_type == "memorandum":
|
|
@@ -11,6 +11,13 @@ from .config import SOURCES, RAW_DIR, PROCESSED_DIR
|
|
| 11 |
LIMS = "{http://justice.gc.ca/lims}"
|
| 12 |
BLOCK_TAGS = {"Subsection", "Paragraph", "Subparagraph", "Clause", "Definition"}
|
| 13 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 14 |
# The semantic embedder (embed.py) only reads the first _MAX_BODY=2000 chars of
|
| 15 |
# a chunk, so the tail of a long section is invisible to semantic search. A
|
| 16 |
# section whose rendered text exceeds _SPLIT_THRESHOLD is therefore emitted as
|
|
@@ -142,6 +149,17 @@ def parse_legislation(xml_path, code):
|
|
| 142 |
marginal = _itertext(note_el) if note_el is not None else ""
|
| 143 |
body_text = _render_block(el, is_section=True)
|
| 144 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 145 |
if number:
|
| 146 |
chunk_id = f"{code}-s{number}"
|
| 147 |
citation = f"{src['short']}, s. {number}"
|
|
|
|
| 11 |
LIMS = "{http://justice.gc.ca/lims}"
|
| 12 |
BLOCK_TAGS = {"Subsection", "Paragraph", "Subparagraph", "Clause", "Definition"}
|
| 13 |
|
| 14 |
+
# A section whose entire rendered body is a placeholder marker -- "30 [Amendment]",
|
| 15 |
+
# "162 [Amendments]", "5 [Related provision]" -- left where an enacting Act amended
|
| 16 |
+
# another Act. Content-free; dropped at ingest. ([Repealed, ...] is deliberately
|
| 17 |
+
# excluded here so repealed sections are kept and flagged instead.)
|
| 18 |
+
_AMENDMENT_STUB = re.compile(
|
| 19 |
+
r"^\S+\s*\[(?:Amendments?|Related provisions?)\]\s*$", re.IGNORECASE)
|
| 20 |
+
|
| 21 |
# The semantic embedder (embed.py) only reads the first _MAX_BODY=2000 chars of
|
| 22 |
# a chunk, so the tail of a long section is invisible to semantic search. A
|
| 23 |
# section whose rendered text exceeds _SPLIT_THRESHOLD is therefore emitted as
|
|
|
|
| 149 |
marginal = _itertext(note_el) if note_el is not None else ""
|
| 150 |
body_text = _render_block(el, is_section=True)
|
| 151 |
|
| 152 |
+
# Drop content-free amendment/related-provision stubs. When an Act
|
| 153 |
+
# amends OTHER Acts, the consolidation keeps a placeholder section whose
|
| 154 |
+
# whole body is just a marker -- e.g. "30 [Amendment]" -- the actual
|
| 155 |
+
# text living in the Act being amended. These carry no substance, yet
|
| 156 |
+
# were being indexed and rendered with an 'in force' currency line as if
|
| 157 |
+
# they were live provisions (117 in the CBSA Act alone). Skip them.
|
| 158 |
+
# (Repealed sections, "<n> [Repealed, ...]", are NOT dropped -- they are
|
| 159 |
+
# flagged status='repealed' and kept so a section lookup still informs.)
|
| 160 |
+
if _AMENDMENT_STUB.match(body_text):
|
| 161 |
+
continue
|
| 162 |
+
|
| 163 |
if number:
|
| 164 |
chunk_id = f"{code}-s{number}"
|
| 165 |
citation = f"{src['short']}, s. {number}"
|
|
@@ -0,0 +1,81 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
"""Mine the query log for real-world retrieval gaps.
|
| 2 |
+
|
| 3 |
+
The MCP server appends one JSON line per search to CANLEX_LOG_DIR/queries.jsonl
|
| 4 |
+
when CANLEX_LOG_DIR is set (see server._log_query). Real user queries -- the
|
| 5 |
+
ones that returned nothing or scored a weak match -- are the only unbiased
|
| 6 |
+
source of corpus and synonym gaps, since the 155-question eval set is authored
|
| 7 |
+
by the maintainer. This tool surfaces the weakest and most frequent of them as
|
| 8 |
+
candidates for new eval questions, synonyms, or corpus additions.
|
| 9 |
+
|
| 10 |
+
py -m canlex.loganalyze [path/to/queries.jsonl] # defaults to CANLEX_LOG_DIR
|
| 11 |
+
|
| 12 |
+
By default it lists no-result queries, then the lowest-confidence queries, then
|
| 13 |
+
the most-repeated ones. Privacy: query text may contain personal facts -- treat
|
| 14 |
+
the log as sensitive and do not commit it.
|
| 15 |
+
"""
|
| 16 |
+
import json
|
| 17 |
+
import os
|
| 18 |
+
import sys
|
| 19 |
+
from collections import Counter
|
| 20 |
+
from pathlib import Path
|
| 21 |
+
|
| 22 |
+
# Mirror server.HEDGE_THRESHOLD's intent without importing the server: a query
|
| 23 |
+
# whose best result scored below this is a weak match worth reviewing.
|
| 24 |
+
_WEAK = 0.72
|
| 25 |
+
|
| 26 |
+
|
| 27 |
+
def _load(path):
|
| 28 |
+
rows = []
|
| 29 |
+
for line in Path(path).read_text(encoding="utf-8").splitlines():
|
| 30 |
+
line = line.strip()
|
| 31 |
+
if not line:
|
| 32 |
+
continue
|
| 33 |
+
try:
|
| 34 |
+
rows.append(json.loads(line))
|
| 35 |
+
except ValueError:
|
| 36 |
+
continue
|
| 37 |
+
return rows
|
| 38 |
+
|
| 39 |
+
|
| 40 |
+
def report(path):
|
| 41 |
+
rows = _load(path)
|
| 42 |
+
if not rows:
|
| 43 |
+
print(f"No logged queries in {path}.")
|
| 44 |
+
return
|
| 45 |
+
print(f"{len(rows)} logged queries in {path}\n")
|
| 46 |
+
|
| 47 |
+
no_result = [r for r in rows if r.get("n_results", 0) == 0]
|
| 48 |
+
weak = sorted((r for r in rows
|
| 49 |
+
if r.get("confidence") is not None
|
| 50 |
+
and r["confidence"] < _WEAK and r.get("n_results")),
|
| 51 |
+
key=lambda r: r["confidence"])
|
| 52 |
+
freq = Counter(r.get("query", "").strip().lower() for r in rows)
|
| 53 |
+
|
| 54 |
+
print(f"== No results ({len(no_result)}) -- likely corpus or vocabulary gaps ==")
|
| 55 |
+
for r in no_result[:25]:
|
| 56 |
+
print(f" {r.get('query','')}")
|
| 57 |
+
|
| 58 |
+
print(f"\n== Weak matches (confidence < {_WEAK}; {len(weak)}) -- candidate "
|
| 59 |
+
f"eval questions / synonyms ==")
|
| 60 |
+
for r in weak[:25]:
|
| 61 |
+
top = (r.get("top_citations") or ["?"])[0]
|
| 62 |
+
print(f" {r['confidence']:.3f} {r.get('query','')[:70]:70} -> {top}")
|
| 63 |
+
|
| 64 |
+
print("\n== Most repeated queries (demand signal) ==")
|
| 65 |
+
for q, n in freq.most_common(15):
|
| 66 |
+
if n > 1:
|
| 67 |
+
print(f" {n:>3}x {q}")
|
| 68 |
+
|
| 69 |
+
|
| 70 |
+
def main():
|
| 71 |
+
path = (sys.argv[1] if len(sys.argv) > 1
|
| 72 |
+
else os.path.join(os.environ.get("CANLEX_LOG_DIR", "."), "queries.jsonl"))
|
| 73 |
+
if not Path(path).exists():
|
| 74 |
+
print(f"No query log at {path}. Set CANLEX_LOG_DIR on the server (and "
|
| 75 |
+
f"pass the path here) to collect one.", file=sys.stderr)
|
| 76 |
+
sys.exit(1)
|
| 77 |
+
report(path)
|
| 78 |
+
|
| 79 |
+
|
| 80 |
+
if __name__ == "__main__":
|
| 81 |
+
main()
|
|
@@ -4,8 +4,12 @@
|
|
| 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 |
|
|
@@ -73,6 +77,64 @@ def _index() -> LegislationIndex:
|
|
| 73 |
return _INDEX
|
| 74 |
|
| 75 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 76 |
def _format_section(c: dict, related=None) -> str:
|
| 77 |
"""Render one chunk (legislation, D-Memo, or agreement) as cited Markdown."""
|
| 78 |
doc_type = c.get("doc_type", "legislation")
|
|
@@ -83,15 +145,21 @@ def _format_section(c: dict, related=None) -> str:
|
|
| 83 |
lines.append(f"*{location}*")
|
| 84 |
if doc_type == "memorandum":
|
| 85 |
lines.append("_CBSA administrative guidance — persuasive, not binding law._")
|
| 86 |
-
lines.append(f"(modified {c['current_to']
|
|
|
|
|
|
|
|
|
|
| 87 |
elif doc_type == "agreement":
|
| 88 |
lines.append("_Treasury Board collective agreement — a binding contract for "
|
| 89 |
"this bargaining unit._")
|
| 90 |
-
lines.append(f"(in force to {c['current_to']
|
| 91 |
elif doc_type == "directive":
|
| 92 |
lines.append("_National Joint Council directive — forms part of collective "
|
| 93 |
"agreements; binding for the matters it covers._")
|
| 94 |
-
lines.append(f"(effective {c['current_to']
|
|
|
|
|
|
|
|
|
|
| 95 |
elif doc_type == "caselaw":
|
| 96 |
if "Immigration and Refugee Board" in c["part"]:
|
| 97 |
lines.append("_Immigration and Refugee Board jurisprudential guide "
|
|
@@ -122,7 +190,10 @@ def _format_section(c: dict, related=None) -> str:
|
|
| 122 |
"governing terms are in the plan's directive or rules, "
|
| 123 |
"which prevail in any discrepancy; quote the booklet for "
|
| 124 |
"what it says but flag that the plan rules control._")
|
| 125 |
-
lines.append(f"(booklet edition: {c['current_to']
|
|
|
|
|
|
|
|
|
|
| 126 |
elif c.get("status") == "repealed":
|
| 127 |
# A repealed provision is no longer law; say so unmistakably so the
|
| 128 |
# model never presents the (near-empty) stub as if it were in force.
|
|
@@ -261,6 +332,7 @@ def canlex_search_legislation(params: SearchInput) -> str:
|
|
| 261 |
index = _index()
|
| 262 |
results = index.search(params.query, top_k=params.top_k, act=params.act,
|
| 263 |
doc_type=params.doc_type)
|
|
|
|
| 264 |
if not results:
|
| 265 |
scope = f" in '{params.act}'" if params.act else ""
|
| 266 |
return (f"No results matched '{params.query}'{scope}. "
|
|
|
|
| 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 datetime
|
| 8 |
+
import json
|
| 9 |
import os
|
| 10 |
+
import re
|
| 11 |
import sys
|
| 12 |
+
import time
|
| 13 |
from pathlib import Path
|
| 14 |
from typing import Optional
|
| 15 |
|
|
|
|
| 77 |
return _INDEX
|
| 78 |
|
| 79 |
|
| 80 |
+
_GUIDANCE_AGE_YEARS = 5 # warn when guidance is older than this
|
| 81 |
+
_YEAR = re.compile(r"\b(?:19|20)\d{2}\b")
|
| 82 |
+
|
| 83 |
+
|
| 84 |
+
def _log_query(query, top_k, act, doc_type, results):
|
| 85 |
+
"""Append one JSON line per search to CANLEX_LOG_DIR/queries.jsonl, if that
|
| 86 |
+
env var is set. Real user queries -- especially weak-match or no-result ones
|
| 87 |
+
-- are the only unbiased source of corpus gaps (the eval set is
|
| 88 |
+
maintainer-authored); scripts/loganalyze.py mines them. Logs the query text
|
| 89 |
+
and outcome only, never anything else; opt-in via the env var, off by
|
| 90 |
+
default. Best-effort: a logging failure never affects the response."""
|
| 91 |
+
log_dir = os.environ.get("CANLEX_LOG_DIR")
|
| 92 |
+
if not log_dir:
|
| 93 |
+
return
|
| 94 |
+
try:
|
| 95 |
+
top = results[0] if results else None
|
| 96 |
+
record = {
|
| 97 |
+
"ts": int(time.time()),
|
| 98 |
+
"query": query,
|
| 99 |
+
"top_k": top_k,
|
| 100 |
+
"act": act,
|
| 101 |
+
"doc_type": doc_type,
|
| 102 |
+
"n_results": len(results),
|
| 103 |
+
"confidence": (round(top["confidence"], 4)
|
| 104 |
+
if top and top.get("confidence") is not None else None),
|
| 105 |
+
"top_citations": [r.get("citation", "") for r in results[:3]],
|
| 106 |
+
}
|
| 107 |
+
path = Path(log_dir)
|
| 108 |
+
path.mkdir(parents=True, exist_ok=True)
|
| 109 |
+
with (path / "queries.jsonl").open("a", encoding="utf-8") as fh:
|
| 110 |
+
fh.write(json.dumps(record, ensure_ascii=False) + "\n")
|
| 111 |
+
except Exception:
|
| 112 |
+
pass
|
| 113 |
+
|
| 114 |
+
|
| 115 |
+
def _stated(value: str) -> str:
|
| 116 |
+
"""A currency value for display, or an honest placeholder when the source
|
| 117 |
+
states none -- so a reader sees 'not stated by the source' rather than a
|
| 118 |
+
bare 'n/a' that reads as an oversight."""
|
| 119 |
+
return value or "not stated by the source"
|
| 120 |
+
|
| 121 |
+
|
| 122 |
+
def _guidance_age_note(current_to: str) -> str:
|
| 123 |
+
"""A warning when administrative guidance is several years old, since its
|
| 124 |
+
figures and procedures may have changed (e.g. duty-free limits in a 2013
|
| 125 |
+
D-memo). Only fires when a year can be read from the currency value."""
|
| 126 |
+
years = _YEAR.findall(current_to or "")
|
| 127 |
+
if not years:
|
| 128 |
+
return ""
|
| 129 |
+
newest = max(int(y) for y in years)
|
| 130 |
+
age = datetime.date.today().year - newest
|
| 131 |
+
if age >= _GUIDANCE_AGE_YEARS:
|
| 132 |
+
return (f"_⚠ This guidance is about {age} years old (dated {newest}); "
|
| 133 |
+
"its figures or procedures may have changed -- verify against "
|
| 134 |
+
"the current published version._")
|
| 135 |
+
return ""
|
| 136 |
+
|
| 137 |
+
|
| 138 |
def _format_section(c: dict, related=None) -> str:
|
| 139 |
"""Render one chunk (legislation, D-Memo, or agreement) as cited Markdown."""
|
| 140 |
doc_type = c.get("doc_type", "legislation")
|
|
|
|
| 145 |
lines.append(f"*{location}*")
|
| 146 |
if doc_type == "memorandum":
|
| 147 |
lines.append("_CBSA administrative guidance — persuasive, not binding law._")
|
| 148 |
+
lines.append(f"(modified {_stated(c['current_to'])})")
|
| 149 |
+
age = _guidance_age_note(c["current_to"])
|
| 150 |
+
if age:
|
| 151 |
+
lines.append(age)
|
| 152 |
elif doc_type == "agreement":
|
| 153 |
lines.append("_Treasury Board collective agreement — a binding contract for "
|
| 154 |
"this bargaining unit._")
|
| 155 |
+
lines.append(f"(in force to {_stated(c['current_to'])})")
|
| 156 |
elif doc_type == "directive":
|
| 157 |
lines.append("_National Joint Council directive — forms part of collective "
|
| 158 |
"agreements; binding for the matters it covers._")
|
| 159 |
+
lines.append(f"(effective {_stated(c['current_to'])})")
|
| 160 |
+
age = _guidance_age_note(c["current_to"])
|
| 161 |
+
if age:
|
| 162 |
+
lines.append(age)
|
| 163 |
elif doc_type == "caselaw":
|
| 164 |
if "Immigration and Refugee Board" in c["part"]:
|
| 165 |
lines.append("_Immigration and Refugee Board jurisprudential guide "
|
|
|
|
| 190 |
"governing terms are in the plan's directive or rules, "
|
| 191 |
"which prevail in any discrepancy; quote the booklet for "
|
| 192 |
"what it says but flag that the plan rules control._")
|
| 193 |
+
lines.append(f"(booklet edition: {_stated(c['current_to'])})")
|
| 194 |
+
age = _guidance_age_note(c["current_to"])
|
| 195 |
+
if age:
|
| 196 |
+
lines.append(age)
|
| 197 |
elif c.get("status") == "repealed":
|
| 198 |
# A repealed provision is no longer law; say so unmistakably so the
|
| 199 |
# model never presents the (near-empty) stub as if it were in force.
|
|
|
|
| 332 |
index = _index()
|
| 333 |
results = index.search(params.query, top_k=params.top_k, act=params.act,
|
| 334 |
doc_type=params.doc_type)
|
| 335 |
+
_log_query(params.query, params.top_k, params.act, params.doc_type, results)
|
| 336 |
if not results:
|
| 337 |
scope = f" in '{params.act}'" if params.act else ""
|
| 338 |
return (f"No results matched '{params.query}'{scope}. "
|
|
@@ -153,5 +153,9 @@
|
|
| 153 |
{"query": "What authorization is required to import a firearm into Canada?", "answers": [["Firearms Act", ""]]},
|
| 154 |
{"query": "What are the procedures for an admissibility hearing before the Immigration Division?", "answers": [["Immigration Division Rules", ""]]},
|
| 155 |
{"query": "What rules govern the hearing of a refugee protection claim before the RPD?", "answers": [["RPD Rules", ""]]},
|
| 156 |
-
{"query": "What are the Refugee Appeal Division Rules for filing and perfecting an appeal?", "answers": [["RAD Rules", ""]]}
|
|
|
|
|
|
|
|
|
|
|
|
|
| 157 |
]
|
|
|
|
| 153 |
{"query": "What authorization is required to import a firearm into Canada?", "answers": [["Firearms Act", ""]]},
|
| 154 |
{"query": "What are the procedures for an admissibility hearing before the Immigration Division?", "answers": [["Immigration Division Rules", ""]]},
|
| 155 |
{"query": "What rules govern the hearing of a refugee protection claim before the RPD?", "answers": [["RPD Rules", ""]]},
|
| 156 |
+
{"query": "What are the Refugee Appeal Division Rules for filing and perfecting an appeal?", "answers": [["RAD Rules", ""]]},
|
| 157 |
+
{"query": "What is the right to withdraw from a preclearance area, and what powers does a US preclearance officer have in Canada?", "answers": [["Preclearance Act", ""]]},
|
| 158 |
+
{"query": "What does WAPPRIITA prohibit for international trade in protected wild animals and plants?", "answers": [["WAPPRIITA", ""]]},
|
| 159 |
+
{"query": "How must imported goods be reported to a customs officer?", "answers": [["Reporting of Imported Goods Regs", ""], ["Customs Act", "12"]]},
|
| 160 |
+
{"query": "Returning Persons Exemption Regulations prescribed value of goods for a returning resident", "answers": [["Returning Persons Exemption Regs", ""], ["D-Memo", "D2-3-1"]]}
|
| 161 |
]
|
|
@@ -588,2229 +588,6 @@
|
|
| 588 |
"text": "29 The Minister of National Revenue is the Minister for the purposes of the Royal Canadian Mint Act until another member of the Queen’s Privy Council for Canada is designated under section 2.1 of that Act, as enacted by section 130 of this Act.",
|
| 589 |
"citation": "CBSA Act, s. 29"
|
| 590 |
},
|
| 591 |
-
{
|
| 592 |
-
"act_code": "C-1.4",
|
| 593 |
-
"act_short": "CBSA Act",
|
| 594 |
-
"act_name": "Canada Border Services Agency Act",
|
| 595 |
-
"section": "30",
|
| 596 |
-
"marginal_note": "",
|
| 597 |
-
"part": "",
|
| 598 |
-
"division": "",
|
| 599 |
-
"heading": "Agriculture and Agri-Food Administrative Monetary Penalties Act",
|
| 600 |
-
"history": "",
|
| 601 |
-
"last_amended": "2005-12-12",
|
| 602 |
-
"in_force": "2005-12-12",
|
| 603 |
-
"status": "in force",
|
| 604 |
-
"current_to": "2024-11-11",
|
| 605 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-30.html",
|
| 606 |
-
"id": "C-1.4-s30",
|
| 607 |
-
"text": "30 [Amendment]",
|
| 608 |
-
"citation": "CBSA Act, s. 30"
|
| 609 |
-
},
|
| 610 |
-
{
|
| 611 |
-
"act_code": "C-1.4",
|
| 612 |
-
"act_short": "CBSA Act",
|
| 613 |
-
"act_name": "Canada Border Services Agency Act",
|
| 614 |
-
"section": "31",
|
| 615 |
-
"marginal_note": "",
|
| 616 |
-
"part": "",
|
| 617 |
-
"division": "",
|
| 618 |
-
"heading": "Air Travellers Security Charge Act",
|
| 619 |
-
"history": "",
|
| 620 |
-
"last_amended": "2005-12-12",
|
| 621 |
-
"in_force": "2005-12-12",
|
| 622 |
-
"status": "in force",
|
| 623 |
-
"current_to": "2024-11-11",
|
| 624 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-31.html",
|
| 625 |
-
"id": "C-1.4-s31",
|
| 626 |
-
"text": "31 [Amendment]",
|
| 627 |
-
"citation": "CBSA Act, s. 31"
|
| 628 |
-
},
|
| 629 |
-
{
|
| 630 |
-
"act_code": "C-1.4",
|
| 631 |
-
"act_short": "CBSA Act",
|
| 632 |
-
"act_name": "Canada Border Services Agency Act",
|
| 633 |
-
"section": "32",
|
| 634 |
-
"marginal_note": "",
|
| 635 |
-
"part": "",
|
| 636 |
-
"division": "",
|
| 637 |
-
"heading": "Air Travellers Security Charge Act",
|
| 638 |
-
"history": "",
|
| 639 |
-
"last_amended": "2005-12-12",
|
| 640 |
-
"in_force": "2005-12-12",
|
| 641 |
-
"status": "in force",
|
| 642 |
-
"current_to": "2024-11-11",
|
| 643 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-32.html",
|
| 644 |
-
"id": "C-1.4-s32",
|
| 645 |
-
"text": "32 [Amendment]",
|
| 646 |
-
"citation": "CBSA Act, s. 32"
|
| 647 |
-
},
|
| 648 |
-
{
|
| 649 |
-
"act_code": "C-1.4",
|
| 650 |
-
"act_short": "CBSA Act",
|
| 651 |
-
"act_name": "Canada Border Services Agency Act",
|
| 652 |
-
"section": "33",
|
| 653 |
-
"marginal_note": "",
|
| 654 |
-
"part": "",
|
| 655 |
-
"division": "",
|
| 656 |
-
"heading": "Canada Agricultural Products Act",
|
| 657 |
-
"history": "",
|
| 658 |
-
"last_amended": "2005-12-12",
|
| 659 |
-
"in_force": "2005-12-12",
|
| 660 |
-
"status": "in force",
|
| 661 |
-
"current_to": "2024-11-11",
|
| 662 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-33.html",
|
| 663 |
-
"id": "C-1.4-s33",
|
| 664 |
-
"text": "33 [Amendment]",
|
| 665 |
-
"citation": "CBSA Act, s. 33"
|
| 666 |
-
},
|
| 667 |
-
{
|
| 668 |
-
"act_code": "C-1.4",
|
| 669 |
-
"act_short": "CBSA Act",
|
| 670 |
-
"act_name": "Canada Border Services Agency Act",
|
| 671 |
-
"section": "34",
|
| 672 |
-
"marginal_note": "",
|
| 673 |
-
"part": "",
|
| 674 |
-
"division": "",
|
| 675 |
-
"heading": "Canada Customs and Revenue Agency Act",
|
| 676 |
-
"history": "",
|
| 677 |
-
"last_amended": "2005-12-12",
|
| 678 |
-
"in_force": "2005-12-12",
|
| 679 |
-
"status": "in force",
|
| 680 |
-
"current_to": "2024-11-11",
|
| 681 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-34.html",
|
| 682 |
-
"id": "C-1.4-s34",
|
| 683 |
-
"text": "34 [Amendment]",
|
| 684 |
-
"citation": "CBSA Act, s. 34"
|
| 685 |
-
},
|
| 686 |
-
{
|
| 687 |
-
"act_code": "C-1.4",
|
| 688 |
-
"act_short": "CBSA Act",
|
| 689 |
-
"act_name": "Canada Border Services Agency Act",
|
| 690 |
-
"section": "35",
|
| 691 |
-
"marginal_note": "",
|
| 692 |
-
"part": "",
|
| 693 |
-
"division": "",
|
| 694 |
-
"heading": "Canada Customs and Revenue Agency Act",
|
| 695 |
-
"history": "",
|
| 696 |
-
"last_amended": "2005-12-12",
|
| 697 |
-
"in_force": "2005-12-12",
|
| 698 |
-
"status": "in force",
|
| 699 |
-
"current_to": "2024-11-11",
|
| 700 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-35.html",
|
| 701 |
-
"id": "C-1.4-s35",
|
| 702 |
-
"text": "35 [Amendment]",
|
| 703 |
-
"citation": "CBSA Act, s. 35"
|
| 704 |
-
},
|
| 705 |
-
{
|
| 706 |
-
"act_code": "C-1.4",
|
| 707 |
-
"act_short": "CBSA Act",
|
| 708 |
-
"act_name": "Canada Border Services Agency Act",
|
| 709 |
-
"section": "36",
|
| 710 |
-
"marginal_note": "",
|
| 711 |
-
"part": "",
|
| 712 |
-
"division": "",
|
| 713 |
-
"heading": "Canada Customs and Revenue Agency Act",
|
| 714 |
-
"history": "",
|
| 715 |
-
"last_amended": "2005-12-12",
|
| 716 |
-
"in_force": "2005-12-12",
|
| 717 |
-
"status": "in force",
|
| 718 |
-
"current_to": "2024-11-11",
|
| 719 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-36.html",
|
| 720 |
-
"id": "C-1.4-s36",
|
| 721 |
-
"text": "36 [Amendments]",
|
| 722 |
-
"citation": "CBSA Act, s. 36"
|
| 723 |
-
},
|
| 724 |
-
{
|
| 725 |
-
"act_code": "C-1.4",
|
| 726 |
-
"act_short": "CBSA Act",
|
| 727 |
-
"act_name": "Canada Border Services Agency Act",
|
| 728 |
-
"section": "37",
|
| 729 |
-
"marginal_note": "",
|
| 730 |
-
"part": "",
|
| 731 |
-
"division": "",
|
| 732 |
-
"heading": "Canada Customs and Revenue Agency Act",
|
| 733 |
-
"history": "",
|
| 734 |
-
"last_amended": "2005-12-12",
|
| 735 |
-
"in_force": "2005-12-12",
|
| 736 |
-
"status": "in force",
|
| 737 |
-
"current_to": "2024-11-11",
|
| 738 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-37.html",
|
| 739 |
-
"id": "C-1.4-s37",
|
| 740 |
-
"text": "37 [Amendment]",
|
| 741 |
-
"citation": "CBSA Act, s. 37"
|
| 742 |
-
},
|
| 743 |
-
{
|
| 744 |
-
"act_code": "C-1.4",
|
| 745 |
-
"act_short": "CBSA Act",
|
| 746 |
-
"act_name": "Canada Border Services Agency Act",
|
| 747 |
-
"section": "38",
|
| 748 |
-
"marginal_note": "",
|
| 749 |
-
"part": "",
|
| 750 |
-
"division": "",
|
| 751 |
-
"heading": "Canada Customs and Revenue Agency Act",
|
| 752 |
-
"history": "",
|
| 753 |
-
"last_amended": "2005-12-12",
|
| 754 |
-
"in_force": "2005-12-12",
|
| 755 |
-
"status": "in force",
|
| 756 |
-
"current_to": "2024-11-11",
|
| 757 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-38.html",
|
| 758 |
-
"id": "C-1.4-s38",
|
| 759 |
-
"text": "38 [Amendment]",
|
| 760 |
-
"citation": "CBSA Act, s. 38"
|
| 761 |
-
},
|
| 762 |
-
{
|
| 763 |
-
"act_code": "C-1.4",
|
| 764 |
-
"act_short": "CBSA Act",
|
| 765 |
-
"act_name": "Canada Border Services Agency Act",
|
| 766 |
-
"section": "39",
|
| 767 |
-
"marginal_note": "",
|
| 768 |
-
"part": "",
|
| 769 |
-
"division": "",
|
| 770 |
-
"heading": "Canada Customs and Revenue Agency Act",
|
| 771 |
-
"history": "",
|
| 772 |
-
"last_amended": "2005-12-12",
|
| 773 |
-
"in_force": "2005-12-12",
|
| 774 |
-
"status": "in force",
|
| 775 |
-
"current_to": "2024-11-11",
|
| 776 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-39.html",
|
| 777 |
-
"id": "C-1.4-s39",
|
| 778 |
-
"text": "39 [Amendment]",
|
| 779 |
-
"citation": "CBSA Act, s. 39"
|
| 780 |
-
},
|
| 781 |
-
{
|
| 782 |
-
"act_code": "C-1.4",
|
| 783 |
-
"act_short": "CBSA Act",
|
| 784 |
-
"act_name": "Canada Border Services Agency Act",
|
| 785 |
-
"section": "40",
|
| 786 |
-
"marginal_note": "",
|
| 787 |
-
"part": "",
|
| 788 |
-
"division": "",
|
| 789 |
-
"heading": "Canada Customs and Revenue Agency Act",
|
| 790 |
-
"history": "",
|
| 791 |
-
"last_amended": "2005-12-12",
|
| 792 |
-
"in_force": "2005-12-12",
|
| 793 |
-
"status": "in force",
|
| 794 |
-
"current_to": "2024-11-11",
|
| 795 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-40.html",
|
| 796 |
-
"id": "C-1.4-s40",
|
| 797 |
-
"text": "40 [Amendments]",
|
| 798 |
-
"citation": "CBSA Act, s. 40"
|
| 799 |
-
},
|
| 800 |
-
{
|
| 801 |
-
"act_code": "C-1.4",
|
| 802 |
-
"act_short": "CBSA Act",
|
| 803 |
-
"act_name": "Canada Border Services Agency Act",
|
| 804 |
-
"section": "41",
|
| 805 |
-
"marginal_note": "",
|
| 806 |
-
"part": "",
|
| 807 |
-
"division": "",
|
| 808 |
-
"heading": "Canada Customs and Revenue Agency Act",
|
| 809 |
-
"history": "",
|
| 810 |
-
"last_amended": "2005-12-12",
|
| 811 |
-
"in_force": "2005-12-12",
|
| 812 |
-
"status": "in force",
|
| 813 |
-
"current_to": "2024-11-11",
|
| 814 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-41.html",
|
| 815 |
-
"id": "C-1.4-s41",
|
| 816 |
-
"text": "41 [Amendment]",
|
| 817 |
-
"citation": "CBSA Act, s. 41"
|
| 818 |
-
},
|
| 819 |
-
{
|
| 820 |
-
"act_code": "C-1.4",
|
| 821 |
-
"act_short": "CBSA Act",
|
| 822 |
-
"act_name": "Canada Border Services Agency Act",
|
| 823 |
-
"section": "42",
|
| 824 |
-
"marginal_note": "",
|
| 825 |
-
"part": "",
|
| 826 |
-
"division": "",
|
| 827 |
-
"heading": "Canada Customs and Revenue Agency Act",
|
| 828 |
-
"history": "",
|
| 829 |
-
"last_amended": "2005-12-12",
|
| 830 |
-
"in_force": "2005-12-12",
|
| 831 |
-
"status": "in force",
|
| 832 |
-
"current_to": "2024-11-11",
|
| 833 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-42.html",
|
| 834 |
-
"id": "C-1.4-s42",
|
| 835 |
-
"text": "42 [Amendment]",
|
| 836 |
-
"citation": "CBSA Act, s. 42"
|
| 837 |
-
},
|
| 838 |
-
{
|
| 839 |
-
"act_code": "C-1.4",
|
| 840 |
-
"act_short": "CBSA Act",
|
| 841 |
-
"act_name": "Canada Border Services Agency Act",
|
| 842 |
-
"section": "43",
|
| 843 |
-
"marginal_note": "",
|
| 844 |
-
"part": "",
|
| 845 |
-
"division": "",
|
| 846 |
-
"heading": "Canada Customs and Revenue Agency Act",
|
| 847 |
-
"history": "",
|
| 848 |
-
"last_amended": "2005-12-12",
|
| 849 |
-
"in_force": "2005-12-12",
|
| 850 |
-
"status": "in force",
|
| 851 |
-
"current_to": "2024-11-11",
|
| 852 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-43.html",
|
| 853 |
-
"id": "C-1.4-s43",
|
| 854 |
-
"text": "43 [Amendment]",
|
| 855 |
-
"citation": "CBSA Act, s. 43"
|
| 856 |
-
},
|
| 857 |
-
{
|
| 858 |
-
"act_code": "C-1.4",
|
| 859 |
-
"act_short": "CBSA Act",
|
| 860 |
-
"act_name": "Canada Border Services Agency Act",
|
| 861 |
-
"section": "44",
|
| 862 |
-
"marginal_note": "",
|
| 863 |
-
"part": "",
|
| 864 |
-
"division": "",
|
| 865 |
-
"heading": "Canada Customs and Revenue Agency Act",
|
| 866 |
-
"history": "",
|
| 867 |
-
"last_amended": "2005-12-12",
|
| 868 |
-
"in_force": "2005-12-12",
|
| 869 |
-
"status": "in force",
|
| 870 |
-
"current_to": "2024-11-11",
|
| 871 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-44.html",
|
| 872 |
-
"id": "C-1.4-s44",
|
| 873 |
-
"text": "44 [Amendment]",
|
| 874 |
-
"citation": "CBSA Act, s. 44"
|
| 875 |
-
},
|
| 876 |
-
{
|
| 877 |
-
"act_code": "C-1.4",
|
| 878 |
-
"act_short": "CBSA Act",
|
| 879 |
-
"act_name": "Canada Border Services Agency Act",
|
| 880 |
-
"section": "45",
|
| 881 |
-
"marginal_note": "",
|
| 882 |
-
"part": "",
|
| 883 |
-
"division": "",
|
| 884 |
-
"heading": "Canada Customs and Revenue Agency Act",
|
| 885 |
-
"history": "",
|
| 886 |
-
"last_amended": "2005-12-12",
|
| 887 |
-
"in_force": "2005-12-12",
|
| 888 |
-
"status": "in force",
|
| 889 |
-
"current_to": "2024-11-11",
|
| 890 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-45.html",
|
| 891 |
-
"id": "C-1.4-s45",
|
| 892 |
-
"text": "45 [Amendment]",
|
| 893 |
-
"citation": "CBSA Act, s. 45"
|
| 894 |
-
},
|
| 895 |
-
{
|
| 896 |
-
"act_code": "C-1.4",
|
| 897 |
-
"act_short": "CBSA Act",
|
| 898 |
-
"act_name": "Canada Border Services Agency Act",
|
| 899 |
-
"section": "46",
|
| 900 |
-
"marginal_note": "",
|
| 901 |
-
"part": "",
|
| 902 |
-
"division": "",
|
| 903 |
-
"heading": "Canada Customs and Revenue Agency Act",
|
| 904 |
-
"history": "",
|
| 905 |
-
"last_amended": "2005-12-12",
|
| 906 |
-
"in_force": "2005-12-12",
|
| 907 |
-
"status": "in force",
|
| 908 |
-
"current_to": "2024-11-11",
|
| 909 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-46.html",
|
| 910 |
-
"id": "C-1.4-s46",
|
| 911 |
-
"text": "46 [Amendment]",
|
| 912 |
-
"citation": "CBSA Act, s. 46"
|
| 913 |
-
},
|
| 914 |
-
{
|
| 915 |
-
"act_code": "C-1.4",
|
| 916 |
-
"act_short": "CBSA Act",
|
| 917 |
-
"act_name": "Canada Border Services Agency Act",
|
| 918 |
-
"section": "47",
|
| 919 |
-
"marginal_note": "",
|
| 920 |
-
"part": "",
|
| 921 |
-
"division": "",
|
| 922 |
-
"heading": "Canada Customs and Revenue Agency Act",
|
| 923 |
-
"history": "",
|
| 924 |
-
"last_amended": "2005-12-12",
|
| 925 |
-
"in_force": "2005-12-12",
|
| 926 |
-
"status": "in force",
|
| 927 |
-
"current_to": "2024-11-11",
|
| 928 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-47.html",
|
| 929 |
-
"id": "C-1.4-s47",
|
| 930 |
-
"text": "47 [Amendment]",
|
| 931 |
-
"citation": "CBSA Act, s. 47"
|
| 932 |
-
},
|
| 933 |
-
{
|
| 934 |
-
"act_code": "C-1.4",
|
| 935 |
-
"act_short": "CBSA Act",
|
| 936 |
-
"act_name": "Canada Border Services Agency Act",
|
| 937 |
-
"section": "48",
|
| 938 |
-
"marginal_note": "",
|
| 939 |
-
"part": "",
|
| 940 |
-
"division": "",
|
| 941 |
-
"heading": "Canada Customs and Revenue Agency Act",
|
| 942 |
-
"history": "",
|
| 943 |
-
"last_amended": "2005-12-12",
|
| 944 |
-
"in_force": "2005-12-12",
|
| 945 |
-
"status": "in force",
|
| 946 |
-
"current_to": "2024-11-11",
|
| 947 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-48.html",
|
| 948 |
-
"id": "C-1.4-s48",
|
| 949 |
-
"text": "48 [Amendment]",
|
| 950 |
-
"citation": "CBSA Act, s. 48"
|
| 951 |
-
},
|
| 952 |
-
{
|
| 953 |
-
"act_code": "C-1.4",
|
| 954 |
-
"act_short": "CBSA Act",
|
| 955 |
-
"act_name": "Canada Border Services Agency Act",
|
| 956 |
-
"section": "49",
|
| 957 |
-
"marginal_note": "",
|
| 958 |
-
"part": "",
|
| 959 |
-
"division": "",
|
| 960 |
-
"heading": "Canada Customs and Revenue Agency Act",
|
| 961 |
-
"history": "",
|
| 962 |
-
"last_amended": "2005-12-12",
|
| 963 |
-
"in_force": "2005-12-12",
|
| 964 |
-
"status": "in force",
|
| 965 |
-
"current_to": "2024-11-11",
|
| 966 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-49.html",
|
| 967 |
-
"id": "C-1.4-s49",
|
| 968 |
-
"text": "49 [Amendment]",
|
| 969 |
-
"citation": "CBSA Act, s. 49"
|
| 970 |
-
},
|
| 971 |
-
{
|
| 972 |
-
"act_code": "C-1.4",
|
| 973 |
-
"act_short": "CBSA Act",
|
| 974 |
-
"act_name": "Canada Border Services Agency Act",
|
| 975 |
-
"section": "50",
|
| 976 |
-
"marginal_note": "",
|
| 977 |
-
"part": "",
|
| 978 |
-
"division": "",
|
| 979 |
-
"heading": "Canada Customs and Revenue Agency Act",
|
| 980 |
-
"history": "",
|
| 981 |
-
"last_amended": "2005-12-12",
|
| 982 |
-
"in_force": "2005-12-12",
|
| 983 |
-
"status": "in force",
|
| 984 |
-
"current_to": "2024-11-11",
|
| 985 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-50.html",
|
| 986 |
-
"id": "C-1.4-s50",
|
| 987 |
-
"text": "50 [Amendment]",
|
| 988 |
-
"citation": "CBSA Act, s. 50"
|
| 989 |
-
},
|
| 990 |
-
{
|
| 991 |
-
"act_code": "C-1.4",
|
| 992 |
-
"act_short": "CBSA Act",
|
| 993 |
-
"act_name": "Canada Border Services Agency Act",
|
| 994 |
-
"section": "51",
|
| 995 |
-
"marginal_note": "",
|
| 996 |
-
"part": "",
|
| 997 |
-
"division": "",
|
| 998 |
-
"heading": "Canada Customs and Revenue Agency Act",
|
| 999 |
-
"history": "",
|
| 1000 |
-
"last_amended": "2005-12-12",
|
| 1001 |
-
"in_force": "2005-12-12",
|
| 1002 |
-
"status": "in force",
|
| 1003 |
-
"current_to": "2024-11-11",
|
| 1004 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-51.html",
|
| 1005 |
-
"id": "C-1.4-s51",
|
| 1006 |
-
"text": "51 [Amendment]",
|
| 1007 |
-
"citation": "CBSA Act, s. 51"
|
| 1008 |
-
},
|
| 1009 |
-
{
|
| 1010 |
-
"act_code": "C-1.4",
|
| 1011 |
-
"act_short": "CBSA Act",
|
| 1012 |
-
"act_name": "Canada Border Services Agency Act",
|
| 1013 |
-
"section": "52",
|
| 1014 |
-
"marginal_note": "",
|
| 1015 |
-
"part": "",
|
| 1016 |
-
"division": "",
|
| 1017 |
-
"heading": "Canada Customs and Revenue Agency Act",
|
| 1018 |
-
"history": "",
|
| 1019 |
-
"last_amended": "2005-12-12",
|
| 1020 |
-
"in_force": "2005-12-12",
|
| 1021 |
-
"status": "in force",
|
| 1022 |
-
"current_to": "2024-11-11",
|
| 1023 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-52.html",
|
| 1024 |
-
"id": "C-1.4-s52",
|
| 1025 |
-
"text": "52 [Amendment]",
|
| 1026 |
-
"citation": "CBSA Act, s. 52"
|
| 1027 |
-
},
|
| 1028 |
-
{
|
| 1029 |
-
"act_code": "C-1.4",
|
| 1030 |
-
"act_short": "CBSA Act",
|
| 1031 |
-
"act_name": "Canada Border Services Agency Act",
|
| 1032 |
-
"section": "53",
|
| 1033 |
-
"marginal_note": "",
|
| 1034 |
-
"part": "",
|
| 1035 |
-
"division": "",
|
| 1036 |
-
"heading": "Canadian Food Inspection Agency Act",
|
| 1037 |
-
"history": "",
|
| 1038 |
-
"last_amended": "2005-12-12",
|
| 1039 |
-
"in_force": "2005-12-12",
|
| 1040 |
-
"status": "in force",
|
| 1041 |
-
"current_to": "2024-11-11",
|
| 1042 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-53.html",
|
| 1043 |
-
"id": "C-1.4-s53",
|
| 1044 |
-
"text": "53 [Amendment]",
|
| 1045 |
-
"citation": "CBSA Act, s. 53"
|
| 1046 |
-
},
|
| 1047 |
-
{
|
| 1048 |
-
"act_code": "C-1.4",
|
| 1049 |
-
"act_short": "CBSA Act",
|
| 1050 |
-
"act_name": "Canada Border Services Agency Act",
|
| 1051 |
-
"section": "54",
|
| 1052 |
-
"marginal_note": "",
|
| 1053 |
-
"part": "",
|
| 1054 |
-
"division": "",
|
| 1055 |
-
"heading": "Canadian International Trade Tribunal Act",
|
| 1056 |
-
"history": "",
|
| 1057 |
-
"last_amended": "2005-12-12",
|
| 1058 |
-
"in_force": "2005-12-12",
|
| 1059 |
-
"status": "in force",
|
| 1060 |
-
"current_to": "2024-11-11",
|
| 1061 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-54.html",
|
| 1062 |
-
"id": "C-1.4-s54",
|
| 1063 |
-
"text": "54 [Amendment]",
|
| 1064 |
-
"citation": "CBSA Act, s. 54"
|
| 1065 |
-
},
|
| 1066 |
-
{
|
| 1067 |
-
"act_code": "C-1.4",
|
| 1068 |
-
"act_short": "CBSA Act",
|
| 1069 |
-
"act_name": "Canada Border Services Agency Act",
|
| 1070 |
-
"section": "55",
|
| 1071 |
-
"marginal_note": "",
|
| 1072 |
-
"part": "",
|
| 1073 |
-
"division": "",
|
| 1074 |
-
"heading": "Canadian International Trade Tribunal Act",
|
| 1075 |
-
"history": "",
|
| 1076 |
-
"last_amended": "2005-12-12",
|
| 1077 |
-
"in_force": "2005-12-12",
|
| 1078 |
-
"status": "in force",
|
| 1079 |
-
"current_to": "2024-11-11",
|
| 1080 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-55.html",
|
| 1081 |
-
"id": "C-1.4-s55",
|
| 1082 |
-
"text": "55 [Amendments]",
|
| 1083 |
-
"citation": "CBSA Act, s. 55"
|
| 1084 |
-
},
|
| 1085 |
-
{
|
| 1086 |
-
"act_code": "C-1.4",
|
| 1087 |
-
"act_short": "CBSA Act",
|
| 1088 |
-
"act_name": "Canada Border Services Agency Act",
|
| 1089 |
-
"section": "56",
|
| 1090 |
-
"marginal_note": "",
|
| 1091 |
-
"part": "",
|
| 1092 |
-
"division": "",
|
| 1093 |
-
"heading": "Canadian International Trade Tribunal Act",
|
| 1094 |
-
"history": "",
|
| 1095 |
-
"last_amended": "2005-12-12",
|
| 1096 |
-
"in_force": "2005-12-12",
|
| 1097 |
-
"status": "in force",
|
| 1098 |
-
"current_to": "2024-11-11",
|
| 1099 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-56.html",
|
| 1100 |
-
"id": "C-1.4-s56",
|
| 1101 |
-
"text": "56 [Related provision]",
|
| 1102 |
-
"citation": "CBSA Act, s. 56"
|
| 1103 |
-
},
|
| 1104 |
-
{
|
| 1105 |
-
"act_code": "C-1.4",
|
| 1106 |
-
"act_short": "CBSA Act",
|
| 1107 |
-
"act_name": "Canada Border Services Agency Act",
|
| 1108 |
-
"section": "57",
|
| 1109 |
-
"marginal_note": "",
|
| 1110 |
-
"part": "",
|
| 1111 |
-
"division": "",
|
| 1112 |
-
"heading": "Department of Citizenship and Immigration Act",
|
| 1113 |
-
"history": "",
|
| 1114 |
-
"last_amended": "2005-12-12",
|
| 1115 |
-
"in_force": "2005-12-12",
|
| 1116 |
-
"status": "in force",
|
| 1117 |
-
"current_to": "2024-11-11",
|
| 1118 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-57.html",
|
| 1119 |
-
"id": "C-1.4-s57",
|
| 1120 |
-
"text": "57 [Amendment]",
|
| 1121 |
-
"citation": "CBSA Act, s. 57"
|
| 1122 |
-
},
|
| 1123 |
-
{
|
| 1124 |
-
"act_code": "C-1.4",
|
| 1125 |
-
"act_short": "CBSA Act",
|
| 1126 |
-
"act_name": "Canada Border Services Agency Act",
|
| 1127 |
-
"section": "58",
|
| 1128 |
-
"marginal_note": "",
|
| 1129 |
-
"part": "",
|
| 1130 |
-
"division": "",
|
| 1131 |
-
"heading": "Criminal Code",
|
| 1132 |
-
"history": "",
|
| 1133 |
-
"last_amended": "2005-12-12",
|
| 1134 |
-
"in_force": "2005-12-12",
|
| 1135 |
-
"status": "in force",
|
| 1136 |
-
"current_to": "2024-11-11",
|
| 1137 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-58.html",
|
| 1138 |
-
"id": "C-1.4-s58",
|
| 1139 |
-
"text": "58 [Amendments]",
|
| 1140 |
-
"citation": "CBSA Act, s. 58"
|
| 1141 |
-
},
|
| 1142 |
-
{
|
| 1143 |
-
"act_code": "C-1.4",
|
| 1144 |
-
"act_short": "CBSA Act",
|
| 1145 |
-
"act_name": "Canada Border Services Agency Act",
|
| 1146 |
-
"section": "59",
|
| 1147 |
-
"marginal_note": "",
|
| 1148 |
-
"part": "",
|
| 1149 |
-
"division": "",
|
| 1150 |
-
"heading": "Cultural Property Export and Import Act",
|
| 1151 |
-
"history": "",
|
| 1152 |
-
"last_amended": "2005-12-12",
|
| 1153 |
-
"in_force": "2005-12-12",
|
| 1154 |
-
"status": "in force",
|
| 1155 |
-
"current_to": "2024-11-11",
|
| 1156 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-59.html",
|
| 1157 |
-
"id": "C-1.4-s59",
|
| 1158 |
-
"text": "59 [Amendment]",
|
| 1159 |
-
"citation": "CBSA Act, s. 59"
|
| 1160 |
-
},
|
| 1161 |
-
{
|
| 1162 |
-
"act_code": "C-1.4",
|
| 1163 |
-
"act_short": "CBSA Act",
|
| 1164 |
-
"act_name": "Canada Border Services Agency Act",
|
| 1165 |
-
"section": "60",
|
| 1166 |
-
"marginal_note": "",
|
| 1167 |
-
"part": "",
|
| 1168 |
-
"division": "",
|
| 1169 |
-
"heading": "Customs Act",
|
| 1170 |
-
"history": "",
|
| 1171 |
-
"last_amended": "2005-12-12",
|
| 1172 |
-
"in_force": "2005-12-12",
|
| 1173 |
-
"status": "in force",
|
| 1174 |
-
"current_to": "2024-11-11",
|
| 1175 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-60.html",
|
| 1176 |
-
"id": "C-1.4-s60",
|
| 1177 |
-
"text": "60 [Amendments]",
|
| 1178 |
-
"citation": "CBSA Act, s. 60"
|
| 1179 |
-
},
|
| 1180 |
-
{
|
| 1181 |
-
"act_code": "C-1.4",
|
| 1182 |
-
"act_short": "CBSA Act",
|
| 1183 |
-
"act_name": "Canada Border Services Agency Act",
|
| 1184 |
-
"section": "61",
|
| 1185 |
-
"marginal_note": "",
|
| 1186 |
-
"part": "",
|
| 1187 |
-
"division": "",
|
| 1188 |
-
"heading": "Customs Act",
|
| 1189 |
-
"history": "",
|
| 1190 |
-
"last_amended": "2005-12-12",
|
| 1191 |
-
"in_force": "2005-12-12",
|
| 1192 |
-
"status": "in force",
|
| 1193 |
-
"current_to": "2024-11-11",
|
| 1194 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-61.html",
|
| 1195 |
-
"id": "C-1.4-s61",
|
| 1196 |
-
"text": "61 [Amendment]",
|
| 1197 |
-
"citation": "CBSA Act, s. 61"
|
| 1198 |
-
},
|
| 1199 |
-
{
|
| 1200 |
-
"act_code": "C-1.4",
|
| 1201 |
-
"act_short": "CBSA Act",
|
| 1202 |
-
"act_name": "Canada Border Services Agency Act",
|
| 1203 |
-
"section": "62",
|
| 1204 |
-
"marginal_note": "",
|
| 1205 |
-
"part": "",
|
| 1206 |
-
"division": "",
|
| 1207 |
-
"heading": "Customs Act",
|
| 1208 |
-
"history": "",
|
| 1209 |
-
"last_amended": "2005-12-12",
|
| 1210 |
-
"in_force": "2005-12-12",
|
| 1211 |
-
"status": "in force",
|
| 1212 |
-
"current_to": "2024-11-11",
|
| 1213 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-62.html",
|
| 1214 |
-
"id": "C-1.4-s62",
|
| 1215 |
-
"text": "62 [Amendment]",
|
| 1216 |
-
"citation": "CBSA Act, s. 62"
|
| 1217 |
-
},
|
| 1218 |
-
{
|
| 1219 |
-
"act_code": "C-1.4",
|
| 1220 |
-
"act_short": "CBSA Act",
|
| 1221 |
-
"act_name": "Canada Border Services Agency Act",
|
| 1222 |
-
"section": "63",
|
| 1223 |
-
"marginal_note": "",
|
| 1224 |
-
"part": "",
|
| 1225 |
-
"division": "",
|
| 1226 |
-
"heading": "Customs Act",
|
| 1227 |
-
"history": "",
|
| 1228 |
-
"last_amended": "2005-12-12",
|
| 1229 |
-
"in_force": "2005-12-12",
|
| 1230 |
-
"status": "in force",
|
| 1231 |
-
"current_to": "2024-11-11",
|
| 1232 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-63.html",
|
| 1233 |
-
"id": "C-1.4-s63",
|
| 1234 |
-
"text": "63 [Amendment]",
|
| 1235 |
-
"citation": "CBSA Act, s. 63"
|
| 1236 |
-
},
|
| 1237 |
-
{
|
| 1238 |
-
"act_code": "C-1.4",
|
| 1239 |
-
"act_short": "CBSA Act",
|
| 1240 |
-
"act_name": "Canada Border Services Agency Act",
|
| 1241 |
-
"section": "64",
|
| 1242 |
-
"marginal_note": "",
|
| 1243 |
-
"part": "",
|
| 1244 |
-
"division": "",
|
| 1245 |
-
"heading": "Customs Act",
|
| 1246 |
-
"history": "",
|
| 1247 |
-
"last_amended": "2005-12-12",
|
| 1248 |
-
"in_force": "2005-12-12",
|
| 1249 |
-
"status": "in force",
|
| 1250 |
-
"current_to": "2024-11-11",
|
| 1251 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-64.html",
|
| 1252 |
-
"id": "C-1.4-s64",
|
| 1253 |
-
"text": "64 [Amendment]",
|
| 1254 |
-
"citation": "CBSA Act, s. 64"
|
| 1255 |
-
},
|
| 1256 |
-
{
|
| 1257 |
-
"act_code": "C-1.4",
|
| 1258 |
-
"act_short": "CBSA Act",
|
| 1259 |
-
"act_name": "Canada Border Services Agency Act",
|
| 1260 |
-
"section": "65",
|
| 1261 |
-
"marginal_note": "",
|
| 1262 |
-
"part": "",
|
| 1263 |
-
"division": "",
|
| 1264 |
-
"heading": "Customs Act",
|
| 1265 |
-
"history": "",
|
| 1266 |
-
"last_amended": "2005-12-12",
|
| 1267 |
-
"in_force": "2005-12-12",
|
| 1268 |
-
"status": "in force",
|
| 1269 |
-
"current_to": "2024-11-11",
|
| 1270 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-65.html",
|
| 1271 |
-
"id": "C-1.4-s65",
|
| 1272 |
-
"text": "65 [Amendment]",
|
| 1273 |
-
"citation": "CBSA Act, s. 65"
|
| 1274 |
-
},
|
| 1275 |
-
{
|
| 1276 |
-
"act_code": "C-1.4",
|
| 1277 |
-
"act_short": "CBSA Act",
|
| 1278 |
-
"act_name": "Canada Border Services Agency Act",
|
| 1279 |
-
"section": "66",
|
| 1280 |
-
"marginal_note": "",
|
| 1281 |
-
"part": "",
|
| 1282 |
-
"division": "",
|
| 1283 |
-
"heading": "Customs Act",
|
| 1284 |
-
"history": "",
|
| 1285 |
-
"last_amended": "2005-12-12",
|
| 1286 |
-
"in_force": "2005-12-12",
|
| 1287 |
-
"status": "in force",
|
| 1288 |
-
"current_to": "2024-11-11",
|
| 1289 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-66.html",
|
| 1290 |
-
"id": "C-1.4-s66",
|
| 1291 |
-
"text": "66 [Amendment]",
|
| 1292 |
-
"citation": "CBSA Act, s. 66"
|
| 1293 |
-
},
|
| 1294 |
-
{
|
| 1295 |
-
"act_code": "C-1.4",
|
| 1296 |
-
"act_short": "CBSA Act",
|
| 1297 |
-
"act_name": "Canada Border Services Agency Act",
|
| 1298 |
-
"section": "67",
|
| 1299 |
-
"marginal_note": "",
|
| 1300 |
-
"part": "",
|
| 1301 |
-
"division": "",
|
| 1302 |
-
"heading": "Customs Act",
|
| 1303 |
-
"history": "",
|
| 1304 |
-
"last_amended": "2005-12-12",
|
| 1305 |
-
"in_force": "2005-12-12",
|
| 1306 |
-
"status": "in force",
|
| 1307 |
-
"current_to": "2024-11-11",
|
| 1308 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-67.html",
|
| 1309 |
-
"id": "C-1.4-s67",
|
| 1310 |
-
"text": "67 [Amendment]",
|
| 1311 |
-
"citation": "CBSA Act, s. 67"
|
| 1312 |
-
},
|
| 1313 |
-
{
|
| 1314 |
-
"act_code": "C-1.4",
|
| 1315 |
-
"act_short": "CBSA Act",
|
| 1316 |
-
"act_name": "Canada Border Services Agency Act",
|
| 1317 |
-
"section": "68",
|
| 1318 |
-
"marginal_note": "",
|
| 1319 |
-
"part": "",
|
| 1320 |
-
"division": "",
|
| 1321 |
-
"heading": "Customs Act",
|
| 1322 |
-
"history": "",
|
| 1323 |
-
"last_amended": "2005-12-12",
|
| 1324 |
-
"in_force": "2005-12-12",
|
| 1325 |
-
"status": "in force",
|
| 1326 |
-
"current_to": "2024-11-11",
|
| 1327 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-68.html",
|
| 1328 |
-
"id": "C-1.4-s68",
|
| 1329 |
-
"text": "68 [Amendment]",
|
| 1330 |
-
"citation": "CBSA Act, s. 68"
|
| 1331 |
-
},
|
| 1332 |
-
{
|
| 1333 |
-
"act_code": "C-1.4",
|
| 1334 |
-
"act_short": "CBSA Act",
|
| 1335 |
-
"act_name": "Canada Border Services Agency Act",
|
| 1336 |
-
"section": "69",
|
| 1337 |
-
"marginal_note": "",
|
| 1338 |
-
"part": "",
|
| 1339 |
-
"division": "",
|
| 1340 |
-
"heading": "Customs Act",
|
| 1341 |
-
"history": "",
|
| 1342 |
-
"last_amended": "2005-12-12",
|
| 1343 |
-
"in_force": "2005-12-12",
|
| 1344 |
-
"status": "in force",
|
| 1345 |
-
"current_to": "2024-11-11",
|
| 1346 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-69.html",
|
| 1347 |
-
"id": "C-1.4-s69",
|
| 1348 |
-
"text": "69 [Amendment]",
|
| 1349 |
-
"citation": "CBSA Act, s. 69"
|
| 1350 |
-
},
|
| 1351 |
-
{
|
| 1352 |
-
"act_code": "C-1.4",
|
| 1353 |
-
"act_short": "CBSA Act",
|
| 1354 |
-
"act_name": "Canada Border Services Agency Act",
|
| 1355 |
-
"section": "70",
|
| 1356 |
-
"marginal_note": "",
|
| 1357 |
-
"part": "",
|
| 1358 |
-
"division": "",
|
| 1359 |
-
"heading": "Customs Act",
|
| 1360 |
-
"history": "",
|
| 1361 |
-
"last_amended": "2005-12-12",
|
| 1362 |
-
"in_force": "2005-12-12",
|
| 1363 |
-
"status": "in force",
|
| 1364 |
-
"current_to": "2024-11-11",
|
| 1365 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-70.html",
|
| 1366 |
-
"id": "C-1.4-s70",
|
| 1367 |
-
"text": "70 [Amendment]",
|
| 1368 |
-
"citation": "CBSA Act, s. 70"
|
| 1369 |
-
},
|
| 1370 |
-
{
|
| 1371 |
-
"act_code": "C-1.4",
|
| 1372 |
-
"act_short": "CBSA Act",
|
| 1373 |
-
"act_name": "Canada Border Services Agency Act",
|
| 1374 |
-
"section": "71",
|
| 1375 |
-
"marginal_note": "",
|
| 1376 |
-
"part": "",
|
| 1377 |
-
"division": "",
|
| 1378 |
-
"heading": "Customs Act",
|
| 1379 |
-
"history": "",
|
| 1380 |
-
"last_amended": "2005-12-12",
|
| 1381 |
-
"in_force": "2005-12-12",
|
| 1382 |
-
"status": "in force",
|
| 1383 |
-
"current_to": "2024-11-11",
|
| 1384 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-71.html",
|
| 1385 |
-
"id": "C-1.4-s71",
|
| 1386 |
-
"text": "71 [Amendment]",
|
| 1387 |
-
"citation": "CBSA Act, s. 71"
|
| 1388 |
-
},
|
| 1389 |
-
{
|
| 1390 |
-
"act_code": "C-1.4",
|
| 1391 |
-
"act_short": "CBSA Act",
|
| 1392 |
-
"act_name": "Canada Border Services Agency Act",
|
| 1393 |
-
"section": "72",
|
| 1394 |
-
"marginal_note": "",
|
| 1395 |
-
"part": "",
|
| 1396 |
-
"division": "",
|
| 1397 |
-
"heading": "Customs Act",
|
| 1398 |
-
"history": "",
|
| 1399 |
-
"last_amended": "2005-12-12",
|
| 1400 |
-
"in_force": "2005-12-12",
|
| 1401 |
-
"status": "in force",
|
| 1402 |
-
"current_to": "2024-11-11",
|
| 1403 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-72.html",
|
| 1404 |
-
"id": "C-1.4-s72",
|
| 1405 |
-
"text": "72 [Amendment]",
|
| 1406 |
-
"citation": "CBSA Act, s. 72"
|
| 1407 |
-
},
|
| 1408 |
-
{
|
| 1409 |
-
"act_code": "C-1.4",
|
| 1410 |
-
"act_short": "CBSA Act",
|
| 1411 |
-
"act_name": "Canada Border Services Agency Act",
|
| 1412 |
-
"section": "73",
|
| 1413 |
-
"marginal_note": "",
|
| 1414 |
-
"part": "",
|
| 1415 |
-
"division": "",
|
| 1416 |
-
"heading": "Customs Act",
|
| 1417 |
-
"history": "",
|
| 1418 |
-
"last_amended": "2005-12-12",
|
| 1419 |
-
"in_force": "2005-12-12",
|
| 1420 |
-
"status": "in force",
|
| 1421 |
-
"current_to": "2024-11-11",
|
| 1422 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-73.html",
|
| 1423 |
-
"id": "C-1.4-s73",
|
| 1424 |
-
"text": "73 [Amendment]",
|
| 1425 |
-
"citation": "CBSA Act, s. 73"
|
| 1426 |
-
},
|
| 1427 |
-
{
|
| 1428 |
-
"act_code": "C-1.4",
|
| 1429 |
-
"act_short": "CBSA Act",
|
| 1430 |
-
"act_name": "Canada Border Services Agency Act",
|
| 1431 |
-
"section": "74",
|
| 1432 |
-
"marginal_note": "",
|
| 1433 |
-
"part": "",
|
| 1434 |
-
"division": "",
|
| 1435 |
-
"heading": "Customs Act",
|
| 1436 |
-
"history": "",
|
| 1437 |
-
"last_amended": "2005-12-12",
|
| 1438 |
-
"in_force": "2005-12-12",
|
| 1439 |
-
"status": "in force",
|
| 1440 |
-
"current_to": "2024-11-11",
|
| 1441 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-74.html",
|
| 1442 |
-
"id": "C-1.4-s74",
|
| 1443 |
-
"text": "74 [Amendment]",
|
| 1444 |
-
"citation": "CBSA Act, s. 74"
|
| 1445 |
-
},
|
| 1446 |
-
{
|
| 1447 |
-
"act_code": "C-1.4",
|
| 1448 |
-
"act_short": "CBSA Act",
|
| 1449 |
-
"act_name": "Canada Border Services Agency Act",
|
| 1450 |
-
"section": "75",
|
| 1451 |
-
"marginal_note": "",
|
| 1452 |
-
"part": "",
|
| 1453 |
-
"division": "",
|
| 1454 |
-
"heading": "Customs Act",
|
| 1455 |
-
"history": "",
|
| 1456 |
-
"last_amended": "2005-12-12",
|
| 1457 |
-
"in_force": "2005-12-12",
|
| 1458 |
-
"status": "in force",
|
| 1459 |
-
"current_to": "2024-11-11",
|
| 1460 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-75.html",
|
| 1461 |
-
"id": "C-1.4-s75",
|
| 1462 |
-
"text": "75 [Amendment]",
|
| 1463 |
-
"citation": "CBSA Act, s. 75"
|
| 1464 |
-
},
|
| 1465 |
-
{
|
| 1466 |
-
"act_code": "C-1.4",
|
| 1467 |
-
"act_short": "CBSA Act",
|
| 1468 |
-
"act_name": "Canada Border Services Agency Act",
|
| 1469 |
-
"section": "76",
|
| 1470 |
-
"marginal_note": "",
|
| 1471 |
-
"part": "",
|
| 1472 |
-
"division": "",
|
| 1473 |
-
"heading": "Customs Act",
|
| 1474 |
-
"history": "",
|
| 1475 |
-
"last_amended": "2005-12-12",
|
| 1476 |
-
"in_force": "2005-12-12",
|
| 1477 |
-
"status": "in force",
|
| 1478 |
-
"current_to": "2024-11-11",
|
| 1479 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-76.html",
|
| 1480 |
-
"id": "C-1.4-s76",
|
| 1481 |
-
"text": "76 [Amendment]",
|
| 1482 |
-
"citation": "CBSA Act, s. 76"
|
| 1483 |
-
},
|
| 1484 |
-
{
|
| 1485 |
-
"act_code": "C-1.4",
|
| 1486 |
-
"act_short": "CBSA Act",
|
| 1487 |
-
"act_name": "Canada Border Services Agency Act",
|
| 1488 |
-
"section": "77",
|
| 1489 |
-
"marginal_note": "",
|
| 1490 |
-
"part": "",
|
| 1491 |
-
"division": "",
|
| 1492 |
-
"heading": "Customs Act",
|
| 1493 |
-
"history": "",
|
| 1494 |
-
"last_amended": "2005-12-12",
|
| 1495 |
-
"in_force": "2005-12-12",
|
| 1496 |
-
"status": "in force",
|
| 1497 |
-
"current_to": "2024-11-11",
|
| 1498 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-77.html",
|
| 1499 |
-
"id": "C-1.4-s77",
|
| 1500 |
-
"text": "77 [Amendment]",
|
| 1501 |
-
"citation": "CBSA Act, s. 77"
|
| 1502 |
-
},
|
| 1503 |
-
{
|
| 1504 |
-
"act_code": "C-1.4",
|
| 1505 |
-
"act_short": "CBSA Act",
|
| 1506 |
-
"act_name": "Canada Border Services Agency Act",
|
| 1507 |
-
"section": "78",
|
| 1508 |
-
"marginal_note": "",
|
| 1509 |
-
"part": "",
|
| 1510 |
-
"division": "",
|
| 1511 |
-
"heading": "Customs Act",
|
| 1512 |
-
"history": "",
|
| 1513 |
-
"last_amended": "2005-12-12",
|
| 1514 |
-
"in_force": "2005-12-12",
|
| 1515 |
-
"status": "in force",
|
| 1516 |
-
"current_to": "2024-11-11",
|
| 1517 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-78.html",
|
| 1518 |
-
"id": "C-1.4-s78",
|
| 1519 |
-
"text": "78 [Amendments]",
|
| 1520 |
-
"citation": "CBSA Act, s. 78"
|
| 1521 |
-
},
|
| 1522 |
-
{
|
| 1523 |
-
"act_code": "C-1.4",
|
| 1524 |
-
"act_short": "CBSA Act",
|
| 1525 |
-
"act_name": "Canada Border Services Agency Act",
|
| 1526 |
-
"section": "79",
|
| 1527 |
-
"marginal_note": "",
|
| 1528 |
-
"part": "",
|
| 1529 |
-
"division": "",
|
| 1530 |
-
"heading": "Customs Act",
|
| 1531 |
-
"history": "",
|
| 1532 |
-
"last_amended": "2005-12-12",
|
| 1533 |
-
"in_force": "2005-12-12",
|
| 1534 |
-
"status": "in force",
|
| 1535 |
-
"current_to": "2024-11-11",
|
| 1536 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-79.html",
|
| 1537 |
-
"id": "C-1.4-s79",
|
| 1538 |
-
"text": "79 [Amendment]",
|
| 1539 |
-
"citation": "CBSA Act, s. 79"
|
| 1540 |
-
},
|
| 1541 |
-
{
|
| 1542 |
-
"act_code": "C-1.4",
|
| 1543 |
-
"act_short": "CBSA Act",
|
| 1544 |
-
"act_name": "Canada Border Services Agency Act",
|
| 1545 |
-
"section": "80",
|
| 1546 |
-
"marginal_note": "",
|
| 1547 |
-
"part": "",
|
| 1548 |
-
"division": "",
|
| 1549 |
-
"heading": "Customs Act",
|
| 1550 |
-
"history": "",
|
| 1551 |
-
"last_amended": "2005-12-12",
|
| 1552 |
-
"in_force": "2005-12-12",
|
| 1553 |
-
"status": "in force",
|
| 1554 |
-
"current_to": "2024-11-11",
|
| 1555 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-80.html",
|
| 1556 |
-
"id": "C-1.4-s80",
|
| 1557 |
-
"text": "80 [Amendments]",
|
| 1558 |
-
"citation": "CBSA Act, s. 80"
|
| 1559 |
-
},
|
| 1560 |
-
{
|
| 1561 |
-
"act_code": "C-1.4",
|
| 1562 |
-
"act_short": "CBSA Act",
|
| 1563 |
-
"act_name": "Canada Border Services Agency Act",
|
| 1564 |
-
"section": "81",
|
| 1565 |
-
"marginal_note": "",
|
| 1566 |
-
"part": "",
|
| 1567 |
-
"division": "",
|
| 1568 |
-
"heading": "Customs Act",
|
| 1569 |
-
"history": "",
|
| 1570 |
-
"last_amended": "2005-12-12",
|
| 1571 |
-
"in_force": "2005-12-12",
|
| 1572 |
-
"status": "in force",
|
| 1573 |
-
"current_to": "2024-11-11",
|
| 1574 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-81.html",
|
| 1575 |
-
"id": "C-1.4-s81",
|
| 1576 |
-
"text": "81 [Amendment]",
|
| 1577 |
-
"citation": "CBSA Act, s. 81"
|
| 1578 |
-
},
|
| 1579 |
-
{
|
| 1580 |
-
"act_code": "C-1.4",
|
| 1581 |
-
"act_short": "CBSA Act",
|
| 1582 |
-
"act_name": "Canada Border Services Agency Act",
|
| 1583 |
-
"section": "82",
|
| 1584 |
-
"marginal_note": "",
|
| 1585 |
-
"part": "",
|
| 1586 |
-
"division": "",
|
| 1587 |
-
"heading": "Customs Act",
|
| 1588 |
-
"history": "",
|
| 1589 |
-
"last_amended": "2005-12-12",
|
| 1590 |
-
"in_force": "2005-12-12",
|
| 1591 |
-
"status": "in force",
|
| 1592 |
-
"current_to": "2024-11-11",
|
| 1593 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-82.html",
|
| 1594 |
-
"id": "C-1.4-s82",
|
| 1595 |
-
"text": "82 [Amendment]",
|
| 1596 |
-
"citation": "CBSA Act, s. 82"
|
| 1597 |
-
},
|
| 1598 |
-
{
|
| 1599 |
-
"act_code": "C-1.4",
|
| 1600 |
-
"act_short": "CBSA Act",
|
| 1601 |
-
"act_name": "Canada Border Services Agency Act",
|
| 1602 |
-
"section": "83",
|
| 1603 |
-
"marginal_note": "",
|
| 1604 |
-
"part": "",
|
| 1605 |
-
"division": "",
|
| 1606 |
-
"heading": "Customs Act",
|
| 1607 |
-
"history": "",
|
| 1608 |
-
"last_amended": "2005-12-12",
|
| 1609 |
-
"in_force": "2005-12-12",
|
| 1610 |
-
"status": "in force",
|
| 1611 |
-
"current_to": "2024-11-11",
|
| 1612 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-83.html",
|
| 1613 |
-
"id": "C-1.4-s83",
|
| 1614 |
-
"text": "83 [Amendment]",
|
| 1615 |
-
"citation": "CBSA Act, s. 83"
|
| 1616 |
-
},
|
| 1617 |
-
{
|
| 1618 |
-
"act_code": "C-1.4",
|
| 1619 |
-
"act_short": "CBSA Act",
|
| 1620 |
-
"act_name": "Canada Border Services Agency Act",
|
| 1621 |
-
"section": "84",
|
| 1622 |
-
"marginal_note": "",
|
| 1623 |
-
"part": "",
|
| 1624 |
-
"division": "",
|
| 1625 |
-
"heading": "Customs Act",
|
| 1626 |
-
"history": "",
|
| 1627 |
-
"last_amended": "2005-12-12",
|
| 1628 |
-
"in_force": "2005-12-12",
|
| 1629 |
-
"status": "in force",
|
| 1630 |
-
"current_to": "2024-11-11",
|
| 1631 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-84.html",
|
| 1632 |
-
"id": "C-1.4-s84",
|
| 1633 |
-
"text": "84 [Amendments]",
|
| 1634 |
-
"citation": "CBSA Act, s. 84"
|
| 1635 |
-
},
|
| 1636 |
-
{
|
| 1637 |
-
"act_code": "C-1.4",
|
| 1638 |
-
"act_short": "CBSA Act",
|
| 1639 |
-
"act_name": "Canada Border Services Agency Act",
|
| 1640 |
-
"section": "85",
|
| 1641 |
-
"marginal_note": "",
|
| 1642 |
-
"part": "",
|
| 1643 |
-
"division": "",
|
| 1644 |
-
"heading": "Customs Act",
|
| 1645 |
-
"history": "",
|
| 1646 |
-
"last_amended": "2005-12-12",
|
| 1647 |
-
"in_force": "2005-12-12",
|
| 1648 |
-
"status": "in force",
|
| 1649 |
-
"current_to": "2024-11-11",
|
| 1650 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-85.html",
|
| 1651 |
-
"id": "C-1.4-s85",
|
| 1652 |
-
"text": "85 [Amendments]",
|
| 1653 |
-
"citation": "CBSA Act, s. 85"
|
| 1654 |
-
},
|
| 1655 |
-
{
|
| 1656 |
-
"act_code": "C-1.4",
|
| 1657 |
-
"act_short": "CBSA Act",
|
| 1658 |
-
"act_name": "Canada Border Services Agency Act",
|
| 1659 |
-
"section": "86",
|
| 1660 |
-
"marginal_note": "",
|
| 1661 |
-
"part": "",
|
| 1662 |
-
"division": "",
|
| 1663 |
-
"heading": "Customs and Excise Offshore Application Act",
|
| 1664 |
-
"history": "",
|
| 1665 |
-
"last_amended": "2005-12-12",
|
| 1666 |
-
"in_force": "2005-12-12",
|
| 1667 |
-
"status": "in force",
|
| 1668 |
-
"current_to": "2024-11-11",
|
| 1669 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-86.html",
|
| 1670 |
-
"id": "C-1.4-s86",
|
| 1671 |
-
"text": "86 [Amendments]",
|
| 1672 |
-
"citation": "CBSA Act, s. 86"
|
| 1673 |
-
},
|
| 1674 |
-
{
|
| 1675 |
-
"act_code": "C-1.4",
|
| 1676 |
-
"act_short": "CBSA Act",
|
| 1677 |
-
"act_name": "Canada Border Services Agency Act",
|
| 1678 |
-
"section": "87",
|
| 1679 |
-
"marginal_note": "",
|
| 1680 |
-
"part": "",
|
| 1681 |
-
"division": "",
|
| 1682 |
-
"heading": "Customs Tariff",
|
| 1683 |
-
"history": "",
|
| 1684 |
-
"last_amended": "2005-12-12",
|
| 1685 |
-
"in_force": "2005-12-12",
|
| 1686 |
-
"status": "in force",
|
| 1687 |
-
"current_to": "2024-11-11",
|
| 1688 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-87.html",
|
| 1689 |
-
"id": "C-1.4-s87",
|
| 1690 |
-
"text": "87 [Amendment]",
|
| 1691 |
-
"citation": "CBSA Act, s. 87"
|
| 1692 |
-
},
|
| 1693 |
-
{
|
| 1694 |
-
"act_code": "C-1.4",
|
| 1695 |
-
"act_short": "CBSA Act",
|
| 1696 |
-
"act_name": "Canada Border Services Agency Act",
|
| 1697 |
-
"section": "88",
|
| 1698 |
-
"marginal_note": "",
|
| 1699 |
-
"part": "",
|
| 1700 |
-
"division": "",
|
| 1701 |
-
"heading": "Customs Tariff",
|
| 1702 |
-
"history": "",
|
| 1703 |
-
"last_amended": "2005-12-12",
|
| 1704 |
-
"in_force": "2005-12-12",
|
| 1705 |
-
"status": "in force",
|
| 1706 |
-
"current_to": "2024-11-11",
|
| 1707 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-88.html",
|
| 1708 |
-
"id": "C-1.4-s88",
|
| 1709 |
-
"text": "88 [Amendment]",
|
| 1710 |
-
"citation": "CBSA Act, s. 88"
|
| 1711 |
-
},
|
| 1712 |
-
{
|
| 1713 |
-
"act_code": "C-1.4",
|
| 1714 |
-
"act_short": "CBSA Act",
|
| 1715 |
-
"act_name": "Canada Border Services Agency Act",
|
| 1716 |
-
"section": "89",
|
| 1717 |
-
"marginal_note": "",
|
| 1718 |
-
"part": "",
|
| 1719 |
-
"division": "",
|
| 1720 |
-
"heading": "Customs Tariff",
|
| 1721 |
-
"history": "",
|
| 1722 |
-
"last_amended": "2005-12-12",
|
| 1723 |
-
"in_force": "2005-12-12",
|
| 1724 |
-
"status": "in force",
|
| 1725 |
-
"current_to": "2024-11-11",
|
| 1726 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-89.html",
|
| 1727 |
-
"id": "C-1.4-s89",
|
| 1728 |
-
"text": "89 [Amendments]",
|
| 1729 |
-
"citation": "CBSA Act, s. 89"
|
| 1730 |
-
},
|
| 1731 |
-
{
|
| 1732 |
-
"act_code": "C-1.4",
|
| 1733 |
-
"act_short": "CBSA Act",
|
| 1734 |
-
"act_name": "Canada Border Services Agency Act",
|
| 1735 |
-
"section": "90",
|
| 1736 |
-
"marginal_note": "",
|
| 1737 |
-
"part": "",
|
| 1738 |
-
"division": "",
|
| 1739 |
-
"heading": "Employment Insurance Act",
|
| 1740 |
-
"history": "",
|
| 1741 |
-
"last_amended": "2005-12-12",
|
| 1742 |
-
"in_force": "2005-12-12",
|
| 1743 |
-
"status": "in force",
|
| 1744 |
-
"current_to": "2024-11-11",
|
| 1745 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-90.html",
|
| 1746 |
-
"id": "C-1.4-s90",
|
| 1747 |
-
"text": "90 [Amendment]",
|
| 1748 |
-
"citation": "CBSA Act, s. 90"
|
| 1749 |
-
},
|
| 1750 |
-
{
|
| 1751 |
-
"act_code": "C-1.4",
|
| 1752 |
-
"act_short": "CBSA Act",
|
| 1753 |
-
"act_name": "Canada Border Services Agency Act",
|
| 1754 |
-
"section": "91",
|
| 1755 |
-
"marginal_note": "",
|
| 1756 |
-
"part": "",
|
| 1757 |
-
"division": "",
|
| 1758 |
-
"heading": "Excise Act",
|
| 1759 |
-
"history": "",
|
| 1760 |
-
"last_amended": "2005-12-12",
|
| 1761 |
-
"in_force": "2005-12-12",
|
| 1762 |
-
"status": "in force",
|
| 1763 |
-
"current_to": "2024-11-11",
|
| 1764 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-91.html",
|
| 1765 |
-
"id": "C-1.4-s91",
|
| 1766 |
-
"text": "91 [Amendment]",
|
| 1767 |
-
"citation": "CBSA Act, s. 91"
|
| 1768 |
-
},
|
| 1769 |
-
{
|
| 1770 |
-
"act_code": "C-1.4",
|
| 1771 |
-
"act_short": "CBSA Act",
|
| 1772 |
-
"act_name": "Canada Border Services Agency Act",
|
| 1773 |
-
"section": "92",
|
| 1774 |
-
"marginal_note": "",
|
| 1775 |
-
"part": "",
|
| 1776 |
-
"division": "",
|
| 1777 |
-
"heading": "Excise Act, 2001",
|
| 1778 |
-
"history": "",
|
| 1779 |
-
"last_amended": "2005-12-12",
|
| 1780 |
-
"in_force": "2005-12-12",
|
| 1781 |
-
"status": "in force",
|
| 1782 |
-
"current_to": "2024-11-11",
|
| 1783 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-92.html",
|
| 1784 |
-
"id": "C-1.4-s92",
|
| 1785 |
-
"text": "92 [Amendment]",
|
| 1786 |
-
"citation": "CBSA Act, s. 92"
|
| 1787 |
-
},
|
| 1788 |
-
{
|
| 1789 |
-
"act_code": "C-1.4",
|
| 1790 |
-
"act_short": "CBSA Act",
|
| 1791 |
-
"act_name": "Canada Border Services Agency Act",
|
| 1792 |
-
"section": "93",
|
| 1793 |
-
"marginal_note": "",
|
| 1794 |
-
"part": "",
|
| 1795 |
-
"division": "",
|
| 1796 |
-
"heading": "Excise Act, 2001",
|
| 1797 |
-
"history": "",
|
| 1798 |
-
"last_amended": "2005-12-12",
|
| 1799 |
-
"in_force": "2005-12-12",
|
| 1800 |
-
"status": "in force",
|
| 1801 |
-
"current_to": "2024-11-11",
|
| 1802 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-93.html",
|
| 1803 |
-
"id": "C-1.4-s93",
|
| 1804 |
-
"text": "93 [Amendment]",
|
| 1805 |
-
"citation": "CBSA Act, s. 93"
|
| 1806 |
-
},
|
| 1807 |
-
{
|
| 1808 |
-
"act_code": "C-1.4",
|
| 1809 |
-
"act_short": "CBSA Act",
|
| 1810 |
-
"act_name": "Canada Border Services Agency Act",
|
| 1811 |
-
"section": "94",
|
| 1812 |
-
"marginal_note": "",
|
| 1813 |
-
"part": "",
|
| 1814 |
-
"division": "",
|
| 1815 |
-
"heading": "Excise Act, 2001",
|
| 1816 |
-
"history": "",
|
| 1817 |
-
"last_amended": "2005-12-12",
|
| 1818 |
-
"in_force": "2005-12-12",
|
| 1819 |
-
"status": "in force",
|
| 1820 |
-
"current_to": "2024-11-11",
|
| 1821 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-94.html",
|
| 1822 |
-
"id": "C-1.4-s94",
|
| 1823 |
-
"text": "94 [Amendments]",
|
| 1824 |
-
"citation": "CBSA Act, s. 94"
|
| 1825 |
-
},
|
| 1826 |
-
{
|
| 1827 |
-
"act_code": "C-1.4",
|
| 1828 |
-
"act_short": "CBSA Act",
|
| 1829 |
-
"act_name": "Canada Border Services Agency Act",
|
| 1830 |
-
"section": "95",
|
| 1831 |
-
"marginal_note": "",
|
| 1832 |
-
"part": "",
|
| 1833 |
-
"division": "",
|
| 1834 |
-
"heading": "Excise Act, 2001",
|
| 1835 |
-
"history": "",
|
| 1836 |
-
"last_amended": "2005-12-12",
|
| 1837 |
-
"in_force": "2005-12-12",
|
| 1838 |
-
"status": "in force",
|
| 1839 |
-
"current_to": "2024-11-11",
|
| 1840 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-95.html",
|
| 1841 |
-
"id": "C-1.4-s95",
|
| 1842 |
-
"text": "95 [Amendments]",
|
| 1843 |
-
"citation": "CBSA Act, s. 95"
|
| 1844 |
-
},
|
| 1845 |
-
{
|
| 1846 |
-
"act_code": "C-1.4",
|
| 1847 |
-
"act_short": "CBSA Act",
|
| 1848 |
-
"act_name": "Canada Border Services Agency Act",
|
| 1849 |
-
"section": "96",
|
| 1850 |
-
"marginal_note": "",
|
| 1851 |
-
"part": "",
|
| 1852 |
-
"division": "",
|
| 1853 |
-
"heading": "Excise Act, 2001",
|
| 1854 |
-
"history": "",
|
| 1855 |
-
"last_amended": "2005-12-12",
|
| 1856 |
-
"in_force": "2005-12-12",
|
| 1857 |
-
"status": "in force",
|
| 1858 |
-
"current_to": "2024-11-11",
|
| 1859 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-96.html",
|
| 1860 |
-
"id": "C-1.4-s96",
|
| 1861 |
-
"text": "96 [Amendment]",
|
| 1862 |
-
"citation": "CBSA Act, s. 96"
|
| 1863 |
-
},
|
| 1864 |
-
{
|
| 1865 |
-
"act_code": "C-1.4",
|
| 1866 |
-
"act_short": "CBSA Act",
|
| 1867 |
-
"act_name": "Canada Border Services Agency Act",
|
| 1868 |
-
"section": "97",
|
| 1869 |
-
"marginal_note": "",
|
| 1870 |
-
"part": "",
|
| 1871 |
-
"division": "",
|
| 1872 |
-
"heading": "Excise Act, 2001",
|
| 1873 |
-
"history": "",
|
| 1874 |
-
"last_amended": "2005-12-12",
|
| 1875 |
-
"in_force": "2005-12-12",
|
| 1876 |
-
"status": "in force",
|
| 1877 |
-
"current_to": "2024-11-11",
|
| 1878 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-97.html",
|
| 1879 |
-
"id": "C-1.4-s97",
|
| 1880 |
-
"text": "97 [Amendment]",
|
| 1881 |
-
"citation": "CBSA Act, s. 97"
|
| 1882 |
-
},
|
| 1883 |
-
{
|
| 1884 |
-
"act_code": "C-1.4",
|
| 1885 |
-
"act_short": "CBSA Act",
|
| 1886 |
-
"act_name": "Canada Border Services Agency Act",
|
| 1887 |
-
"section": "98",
|
| 1888 |
-
"marginal_note": "",
|
| 1889 |
-
"part": "",
|
| 1890 |
-
"division": "",
|
| 1891 |
-
"heading": "Excise Act, 2001",
|
| 1892 |
-
"history": "",
|
| 1893 |
-
"last_amended": "2005-12-12",
|
| 1894 |
-
"in_force": "2005-12-12",
|
| 1895 |
-
"status": "in force",
|
| 1896 |
-
"current_to": "2024-11-11",
|
| 1897 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-98.html",
|
| 1898 |
-
"id": "C-1.4-s98",
|
| 1899 |
-
"text": "98 [Amendment]",
|
| 1900 |
-
"citation": "CBSA Act, s. 98"
|
| 1901 |
-
},
|
| 1902 |
-
{
|
| 1903 |
-
"act_code": "C-1.4",
|
| 1904 |
-
"act_short": "CBSA Act",
|
| 1905 |
-
"act_name": "Canada Border Services Agency Act",
|
| 1906 |
-
"section": "99",
|
| 1907 |
-
"marginal_note": "",
|
| 1908 |
-
"part": "",
|
| 1909 |
-
"division": "",
|
| 1910 |
-
"heading": "Excise Tax Act",
|
| 1911 |
-
"history": "",
|
| 1912 |
-
"last_amended": "2005-12-12",
|
| 1913 |
-
"in_force": "2005-12-12",
|
| 1914 |
-
"status": "in force",
|
| 1915 |
-
"current_to": "2024-11-11",
|
| 1916 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-99.html",
|
| 1917 |
-
"id": "C-1.4-s99",
|
| 1918 |
-
"text": "99 [Amendment]",
|
| 1919 |
-
"citation": "CBSA Act, s. 99"
|
| 1920 |
-
},
|
| 1921 |
-
{
|
| 1922 |
-
"act_code": "C-1.4",
|
| 1923 |
-
"act_short": "CBSA Act",
|
| 1924 |
-
"act_name": "Canada Border Services Agency Act",
|
| 1925 |
-
"section": "100",
|
| 1926 |
-
"marginal_note": "",
|
| 1927 |
-
"part": "",
|
| 1928 |
-
"division": "",
|
| 1929 |
-
"heading": "Excise Tax Act",
|
| 1930 |
-
"history": "",
|
| 1931 |
-
"last_amended": "2005-12-12",
|
| 1932 |
-
"in_force": "2005-12-12",
|
| 1933 |
-
"status": "in force",
|
| 1934 |
-
"current_to": "2024-11-11",
|
| 1935 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-100.html",
|
| 1936 |
-
"id": "C-1.4-s100",
|
| 1937 |
-
"text": "100 [Amendment]",
|
| 1938 |
-
"citation": "CBSA Act, s. 100"
|
| 1939 |
-
},
|
| 1940 |
-
{
|
| 1941 |
-
"act_code": "C-1.4",
|
| 1942 |
-
"act_short": "CBSA Act",
|
| 1943 |
-
"act_name": "Canada Border Services Agency Act",
|
| 1944 |
-
"section": "101",
|
| 1945 |
-
"marginal_note": "",
|
| 1946 |
-
"part": "",
|
| 1947 |
-
"division": "",
|
| 1948 |
-
"heading": "Excise Tax Act",
|
| 1949 |
-
"history": "",
|
| 1950 |
-
"last_amended": "2005-12-12",
|
| 1951 |
-
"in_force": "2005-12-12",
|
| 1952 |
-
"status": "in force",
|
| 1953 |
-
"current_to": "2024-11-11",
|
| 1954 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-101.html",
|
| 1955 |
-
"id": "C-1.4-s101",
|
| 1956 |
-
"text": "101 [Amendment]",
|
| 1957 |
-
"citation": "CBSA Act, s. 101"
|
| 1958 |
-
},
|
| 1959 |
-
{
|
| 1960 |
-
"act_code": "C-1.4",
|
| 1961 |
-
"act_short": "CBSA Act",
|
| 1962 |
-
"act_name": "Canada Border Services Agency Act",
|
| 1963 |
-
"section": "102",
|
| 1964 |
-
"marginal_note": "",
|
| 1965 |
-
"part": "",
|
| 1966 |
-
"division": "",
|
| 1967 |
-
"heading": "Excise Tax Act",
|
| 1968 |
-
"history": "",
|
| 1969 |
-
"last_amended": "2005-12-12",
|
| 1970 |
-
"in_force": "2005-12-12",
|
| 1971 |
-
"status": "in force",
|
| 1972 |
-
"current_to": "2024-11-11",
|
| 1973 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-102.html",
|
| 1974 |
-
"id": "C-1.4-s102",
|
| 1975 |
-
"text": "102 [Amendments]",
|
| 1976 |
-
"citation": "CBSA Act, s. 102"
|
| 1977 |
-
},
|
| 1978 |
-
{
|
| 1979 |
-
"act_code": "C-1.4",
|
| 1980 |
-
"act_short": "CBSA Act",
|
| 1981 |
-
"act_name": "Canada Border Services Agency Act",
|
| 1982 |
-
"section": "103",
|
| 1983 |
-
"marginal_note": "",
|
| 1984 |
-
"part": "",
|
| 1985 |
-
"division": "",
|
| 1986 |
-
"heading": "Excise Tax Act",
|
| 1987 |
-
"history": "",
|
| 1988 |
-
"last_amended": "2005-12-12",
|
| 1989 |
-
"in_force": "2005-12-12",
|
| 1990 |
-
"status": "in force",
|
| 1991 |
-
"current_to": "2024-11-11",
|
| 1992 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-103.html",
|
| 1993 |
-
"id": "C-1.4-s103",
|
| 1994 |
-
"text": "103 [Amendment]",
|
| 1995 |
-
"citation": "CBSA Act, s. 103"
|
| 1996 |
-
},
|
| 1997 |
-
{
|
| 1998 |
-
"act_code": "C-1.4",
|
| 1999 |
-
"act_short": "CBSA Act",
|
| 2000 |
-
"act_name": "Canada Border Services Agency Act",
|
| 2001 |
-
"section": "104",
|
| 2002 |
-
"marginal_note": "",
|
| 2003 |
-
"part": "",
|
| 2004 |
-
"division": "",
|
| 2005 |
-
"heading": "Excise Tax Act",
|
| 2006 |
-
"history": "",
|
| 2007 |
-
"last_amended": "2005-12-12",
|
| 2008 |
-
"in_force": "2005-12-12",
|
| 2009 |
-
"status": "in force",
|
| 2010 |
-
"current_to": "2024-11-11",
|
| 2011 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-104.html",
|
| 2012 |
-
"id": "C-1.4-s104",
|
| 2013 |
-
"text": "104 [Amendment]",
|
| 2014 |
-
"citation": "CBSA Act, s. 104"
|
| 2015 |
-
},
|
| 2016 |
-
{
|
| 2017 |
-
"act_code": "C-1.4",
|
| 2018 |
-
"act_short": "CBSA Act",
|
| 2019 |
-
"act_name": "Canada Border Services Agency Act",
|
| 2020 |
-
"section": "105",
|
| 2021 |
-
"marginal_note": "",
|
| 2022 |
-
"part": "",
|
| 2023 |
-
"division": "",
|
| 2024 |
-
"heading": "Excise Tax Act",
|
| 2025 |
-
"history": "",
|
| 2026 |
-
"last_amended": "2005-12-12",
|
| 2027 |
-
"in_force": "2005-12-12",
|
| 2028 |
-
"status": "in force",
|
| 2029 |
-
"current_to": "2024-11-11",
|
| 2030 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-105.html",
|
| 2031 |
-
"id": "C-1.4-s105",
|
| 2032 |
-
"text": "105 [Amendments]",
|
| 2033 |
-
"citation": "CBSA Act, s. 105"
|
| 2034 |
-
},
|
| 2035 |
-
{
|
| 2036 |
-
"act_code": "C-1.4",
|
| 2037 |
-
"act_short": "CBSA Act",
|
| 2038 |
-
"act_name": "Canada Border Services Agency Act",
|
| 2039 |
-
"section": "106",
|
| 2040 |
-
"marginal_note": "",
|
| 2041 |
-
"part": "",
|
| 2042 |
-
"division": "",
|
| 2043 |
-
"heading": "Excise Tax Act",
|
| 2044 |
-
"history": "",
|
| 2045 |
-
"last_amended": "2005-12-12",
|
| 2046 |
-
"in_force": "2005-12-12",
|
| 2047 |
-
"status": "in force",
|
| 2048 |
-
"current_to": "2024-11-11",
|
| 2049 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-106.html",
|
| 2050 |
-
"id": "C-1.4-s106",
|
| 2051 |
-
"text": "106 [Amendment]",
|
| 2052 |
-
"citation": "CBSA Act, s. 106"
|
| 2053 |
-
},
|
| 2054 |
-
{
|
| 2055 |
-
"act_code": "C-1.4",
|
| 2056 |
-
"act_short": "CBSA Act",
|
| 2057 |
-
"act_name": "Canada Border Services Agency Act",
|
| 2058 |
-
"section": "107",
|
| 2059 |
-
"marginal_note": "",
|
| 2060 |
-
"part": "",
|
| 2061 |
-
"division": "",
|
| 2062 |
-
"heading": "Excise Tax Act",
|
| 2063 |
-
"history": "",
|
| 2064 |
-
"last_amended": "2005-12-12",
|
| 2065 |
-
"in_force": "2005-12-12",
|
| 2066 |
-
"status": "in force",
|
| 2067 |
-
"current_to": "2024-11-11",
|
| 2068 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-107.html",
|
| 2069 |
-
"id": "C-1.4-s107",
|
| 2070 |
-
"text": "107 [Amendment]",
|
| 2071 |
-
"citation": "CBSA Act, s. 107"
|
| 2072 |
-
},
|
| 2073 |
-
{
|
| 2074 |
-
"act_code": "C-1.4",
|
| 2075 |
-
"act_short": "CBSA Act",
|
| 2076 |
-
"act_name": "Canada Border Services Agency Act",
|
| 2077 |
-
"section": "108",
|
| 2078 |
-
"marginal_note": "",
|
| 2079 |
-
"part": "",
|
| 2080 |
-
"division": "",
|
| 2081 |
-
"heading": "Excise Tax Act",
|
| 2082 |
-
"history": "",
|
| 2083 |
-
"last_amended": "2005-12-12",
|
| 2084 |
-
"in_force": "2005-12-12",
|
| 2085 |
-
"status": "in force",
|
| 2086 |
-
"current_to": "2024-11-11",
|
| 2087 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-108.html",
|
| 2088 |
-
"id": "C-1.4-s108",
|
| 2089 |
-
"text": "108 [Amendment]",
|
| 2090 |
-
"citation": "CBSA Act, s. 108"
|
| 2091 |
-
},
|
| 2092 |
-
{
|
| 2093 |
-
"act_code": "C-1.4",
|
| 2094 |
-
"act_short": "CBSA Act",
|
| 2095 |
-
"act_name": "Canada Border Services Agency Act",
|
| 2096 |
-
"section": "109",
|
| 2097 |
-
"marginal_note": "",
|
| 2098 |
-
"part": "",
|
| 2099 |
-
"division": "",
|
| 2100 |
-
"heading": "Excise Tax Act",
|
| 2101 |
-
"history": "",
|
| 2102 |
-
"last_amended": "2005-12-12",
|
| 2103 |
-
"in_force": "2005-12-12",
|
| 2104 |
-
"status": "in force",
|
| 2105 |
-
"current_to": "2024-11-11",
|
| 2106 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-109.html",
|
| 2107 |
-
"id": "C-1.4-s109",
|
| 2108 |
-
"text": "109 [Amendment]",
|
| 2109 |
-
"citation": "CBSA Act, s. 109"
|
| 2110 |
-
},
|
| 2111 |
-
{
|
| 2112 |
-
"act_code": "C-1.4",
|
| 2113 |
-
"act_short": "CBSA Act",
|
| 2114 |
-
"act_name": "Canada Border Services Agency Act",
|
| 2115 |
-
"section": "110",
|
| 2116 |
-
"marginal_note": "",
|
| 2117 |
-
"part": "",
|
| 2118 |
-
"division": "",
|
| 2119 |
-
"heading": "Excise Tax Act",
|
| 2120 |
-
"history": "",
|
| 2121 |
-
"last_amended": "2005-12-12",
|
| 2122 |
-
"in_force": "2005-12-12",
|
| 2123 |
-
"status": "in force",
|
| 2124 |
-
"current_to": "2024-11-11",
|
| 2125 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-110.html",
|
| 2126 |
-
"id": "C-1.4-s110",
|
| 2127 |
-
"text": "110 [Amendment]",
|
| 2128 |
-
"citation": "CBSA Act, s. 110"
|
| 2129 |
-
},
|
| 2130 |
-
{
|
| 2131 |
-
"act_code": "C-1.4",
|
| 2132 |
-
"act_short": "CBSA Act",
|
| 2133 |
-
"act_name": "Canada Border Services Agency Act",
|
| 2134 |
-
"section": "111",
|
| 2135 |
-
"marginal_note": "",
|
| 2136 |
-
"part": "",
|
| 2137 |
-
"division": "",
|
| 2138 |
-
"heading": "Family Orders and Agreements Enforcement Assistance Act",
|
| 2139 |
-
"history": "",
|
| 2140 |
-
"last_amended": "2005-12-12",
|
| 2141 |
-
"in_force": "2005-12-12",
|
| 2142 |
-
"status": "in force",
|
| 2143 |
-
"current_to": "2024-11-11",
|
| 2144 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-111.html",
|
| 2145 |
-
"id": "C-1.4-s111",
|
| 2146 |
-
"text": "111 [Amendment]",
|
| 2147 |
-
"citation": "CBSA Act, s. 111"
|
| 2148 |
-
},
|
| 2149 |
-
{
|
| 2150 |
-
"act_code": "C-1.4",
|
| 2151 |
-
"act_short": "CBSA Act",
|
| 2152 |
-
"act_name": "Canada Border Services Agency Act",
|
| 2153 |
-
"section": "112",
|
| 2154 |
-
"marginal_note": "",
|
| 2155 |
-
"part": "",
|
| 2156 |
-
"division": "",
|
| 2157 |
-
"heading": "Feeds Act",
|
| 2158 |
-
"history": "",
|
| 2159 |
-
"last_amended": "2005-12-12",
|
| 2160 |
-
"in_force": "2005-12-12",
|
| 2161 |
-
"status": "in force",
|
| 2162 |
-
"current_to": "2024-11-11",
|
| 2163 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-112.html",
|
| 2164 |
-
"id": "C-1.4-s112",
|
| 2165 |
-
"text": "112 [Amendment]",
|
| 2166 |
-
"citation": "CBSA Act, s. 112"
|
| 2167 |
-
},
|
| 2168 |
-
{
|
| 2169 |
-
"act_code": "C-1.4",
|
| 2170 |
-
"act_short": "CBSA Act",
|
| 2171 |
-
"act_name": "Canada Border Services Agency Act",
|
| 2172 |
-
"section": "113",
|
| 2173 |
-
"marginal_note": "",
|
| 2174 |
-
"part": "",
|
| 2175 |
-
"division": "",
|
| 2176 |
-
"heading": "Fertilizers Act",
|
| 2177 |
-
"history": "",
|
| 2178 |
-
"last_amended": "2005-12-12",
|
| 2179 |
-
"in_force": "2005-12-12",
|
| 2180 |
-
"status": "in force",
|
| 2181 |
-
"current_to": "2024-11-11",
|
| 2182 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-113.html",
|
| 2183 |
-
"id": "C-1.4-s113",
|
| 2184 |
-
"text": "113 [Amendment]",
|
| 2185 |
-
"citation": "CBSA Act, s. 113"
|
| 2186 |
-
},
|
| 2187 |
-
{
|
| 2188 |
-
"act_code": "C-1.4",
|
| 2189 |
-
"act_short": "CBSA Act",
|
| 2190 |
-
"act_name": "Canada Border Services Agency Act",
|
| 2191 |
-
"section": "114",
|
| 2192 |
-
"marginal_note": "",
|
| 2193 |
-
"part": "",
|
| 2194 |
-
"division": "",
|
| 2195 |
-
"heading": "Financial Administration Act",
|
| 2196 |
-
"history": "",
|
| 2197 |
-
"last_amended": "2005-12-12",
|
| 2198 |
-
"in_force": "2005-12-12",
|
| 2199 |
-
"status": "in force",
|
| 2200 |
-
"current_to": "2024-11-11",
|
| 2201 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-114.html",
|
| 2202 |
-
"id": "C-1.4-s114",
|
| 2203 |
-
"text": "114 [Amendment]",
|
| 2204 |
-
"citation": "CBSA Act, s. 114"
|
| 2205 |
-
},
|
| 2206 |
-
{
|
| 2207 |
-
"act_code": "C-1.4",
|
| 2208 |
-
"act_short": "CBSA Act",
|
| 2209 |
-
"act_name": "Canada Border Services Agency Act",
|
| 2210 |
-
"section": "115",
|
| 2211 |
-
"marginal_note": "",
|
| 2212 |
-
"part": "",
|
| 2213 |
-
"division": "",
|
| 2214 |
-
"heading": "Financial Administration Act",
|
| 2215 |
-
"history": "",
|
| 2216 |
-
"last_amended": "2005-12-12",
|
| 2217 |
-
"in_force": "2005-12-12",
|
| 2218 |
-
"status": "in force",
|
| 2219 |
-
"current_to": "2024-11-11",
|
| 2220 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-115.html",
|
| 2221 |
-
"id": "C-1.4-s115",
|
| 2222 |
-
"text": "115 [Amendment]",
|
| 2223 |
-
"citation": "CBSA Act, s. 115"
|
| 2224 |
-
},
|
| 2225 |
-
{
|
| 2226 |
-
"act_code": "C-1.4",
|
| 2227 |
-
"act_short": "CBSA Act",
|
| 2228 |
-
"act_name": "Canada Border Services Agency Act",
|
| 2229 |
-
"section": "116",
|
| 2230 |
-
"marginal_note": "",
|
| 2231 |
-
"part": "",
|
| 2232 |
-
"division": "",
|
| 2233 |
-
"heading": "Fish Inspection Act",
|
| 2234 |
-
"history": "",
|
| 2235 |
-
"last_amended": "2005-12-12",
|
| 2236 |
-
"in_force": "2005-12-12",
|
| 2237 |
-
"status": "in force",
|
| 2238 |
-
"current_to": "2024-11-11",
|
| 2239 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-116.html",
|
| 2240 |
-
"id": "C-1.4-s116",
|
| 2241 |
-
"text": "116 [Amendment]",
|
| 2242 |
-
"citation": "CBSA Act, s. 116"
|
| 2243 |
-
},
|
| 2244 |
-
{
|
| 2245 |
-
"act_code": "C-1.4",
|
| 2246 |
-
"act_short": "CBSA Act",
|
| 2247 |
-
"act_name": "Canada Border Services Agency Act",
|
| 2248 |
-
"section": "117",
|
| 2249 |
-
"marginal_note": "",
|
| 2250 |
-
"part": "",
|
| 2251 |
-
"division": "",
|
| 2252 |
-
"heading": "Health of Animals Act",
|
| 2253 |
-
"history": "",
|
| 2254 |
-
"last_amended": "2005-12-12",
|
| 2255 |
-
"in_force": "2005-12-12",
|
| 2256 |
-
"status": "in force",
|
| 2257 |
-
"current_to": "2024-11-11",
|
| 2258 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-117.html",
|
| 2259 |
-
"id": "C-1.4-s117",
|
| 2260 |
-
"text": "117 [Amendment]",
|
| 2261 |
-
"citation": "CBSA Act, s. 117"
|
| 2262 |
-
},
|
| 2263 |
-
{
|
| 2264 |
-
"act_code": "C-1.4",
|
| 2265 |
-
"act_short": "CBSA Act",
|
| 2266 |
-
"act_name": "Canada Border Services Agency Act",
|
| 2267 |
-
"section": "118",
|
| 2268 |
-
"marginal_note": "",
|
| 2269 |
-
"part": "",
|
| 2270 |
-
"division": "",
|
| 2271 |
-
"heading": "Immigration and Refugee Protection Act",
|
| 2272 |
-
"history": "",
|
| 2273 |
-
"last_amended": "2005-12-12",
|
| 2274 |
-
"in_force": "2005-12-12",
|
| 2275 |
-
"status": "in force",
|
| 2276 |
-
"current_to": "2024-11-11",
|
| 2277 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-118.html",
|
| 2278 |
-
"id": "C-1.4-s118",
|
| 2279 |
-
"text": "118 [Amendment]",
|
| 2280 |
-
"citation": "CBSA Act, s. 118"
|
| 2281 |
-
},
|
| 2282 |
-
{
|
| 2283 |
-
"act_code": "C-1.4",
|
| 2284 |
-
"act_short": "CBSA Act",
|
| 2285 |
-
"act_name": "Canada Border Services Agency Act",
|
| 2286 |
-
"section": "119",
|
| 2287 |
-
"marginal_note": "",
|
| 2288 |
-
"part": "",
|
| 2289 |
-
"division": "",
|
| 2290 |
-
"heading": "Immigration and Refugee Protection Act",
|
| 2291 |
-
"history": "",
|
| 2292 |
-
"last_amended": "2005-12-12",
|
| 2293 |
-
"in_force": "2005-12-12",
|
| 2294 |
-
"status": "in force",
|
| 2295 |
-
"current_to": "2024-11-11",
|
| 2296 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-119.html",
|
| 2297 |
-
"id": "C-1.4-s119",
|
| 2298 |
-
"text": "119 [Amendments]",
|
| 2299 |
-
"citation": "CBSA Act, s. 119"
|
| 2300 |
-
},
|
| 2301 |
-
{
|
| 2302 |
-
"act_code": "C-1.4",
|
| 2303 |
-
"act_short": "CBSA Act",
|
| 2304 |
-
"act_name": "Canada Border Services Agency Act",
|
| 2305 |
-
"section": "120",
|
| 2306 |
-
"marginal_note": "",
|
| 2307 |
-
"part": "",
|
| 2308 |
-
"division": "",
|
| 2309 |
-
"heading": "Income Tax Act",
|
| 2310 |
-
"history": "",
|
| 2311 |
-
"last_amended": "2005-12-12",
|
| 2312 |
-
"in_force": "2005-12-12",
|
| 2313 |
-
"status": "in force",
|
| 2314 |
-
"current_to": "2024-11-11",
|
| 2315 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-120.html",
|
| 2316 |
-
"id": "C-1.4-s120",
|
| 2317 |
-
"text": "120 [Amendment]",
|
| 2318 |
-
"citation": "CBSA Act, s. 120"
|
| 2319 |
-
},
|
| 2320 |
-
{
|
| 2321 |
-
"act_code": "C-1.4",
|
| 2322 |
-
"act_short": "CBSA Act",
|
| 2323 |
-
"act_name": "Canada Border Services Agency Act",
|
| 2324 |
-
"section": "121",
|
| 2325 |
-
"marginal_note": "",
|
| 2326 |
-
"part": "",
|
| 2327 |
-
"division": "",
|
| 2328 |
-
"heading": "Meat Inspection Act",
|
| 2329 |
-
"history": "",
|
| 2330 |
-
"last_amended": "2005-12-12",
|
| 2331 |
-
"in_force": "2005-12-12",
|
| 2332 |
-
"status": "in force",
|
| 2333 |
-
"current_to": "2024-11-11",
|
| 2334 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-121.html",
|
| 2335 |
-
"id": "C-1.4-s121",
|
| 2336 |
-
"text": "121 [Amendment]",
|
| 2337 |
-
"citation": "CBSA Act, s. 121"
|
| 2338 |
-
},
|
| 2339 |
-
{
|
| 2340 |
-
"act_code": "C-1.4",
|
| 2341 |
-
"act_short": "CBSA Act",
|
| 2342 |
-
"act_name": "Canada Border Services Agency Act",
|
| 2343 |
-
"section": "122",
|
| 2344 |
-
"marginal_note": "",
|
| 2345 |
-
"part": "",
|
| 2346 |
-
"division": "",
|
| 2347 |
-
"heading": "Meat Inspection Act",
|
| 2348 |
-
"history": "",
|
| 2349 |
-
"last_amended": "2005-12-12",
|
| 2350 |
-
"in_force": "2005-12-12",
|
| 2351 |
-
"status": "in force",
|
| 2352 |
-
"current_to": "2024-11-11",
|
| 2353 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-122.html",
|
| 2354 |
-
"id": "C-1.4-s122",
|
| 2355 |
-
"text": "122 [Amendment]",
|
| 2356 |
-
"citation": "CBSA Act, s. 122"
|
| 2357 |
-
},
|
| 2358 |
-
{
|
| 2359 |
-
"act_code": "C-1.4",
|
| 2360 |
-
"act_short": "CBSA Act",
|
| 2361 |
-
"act_name": "Canada Border Services Agency Act",
|
| 2362 |
-
"section": "123",
|
| 2363 |
-
"marginal_note": "",
|
| 2364 |
-
"part": "",
|
| 2365 |
-
"division": "",
|
| 2366 |
-
"heading": "Plant Protection Act",
|
| 2367 |
-
"history": "",
|
| 2368 |
-
"last_amended": "2005-12-12",
|
| 2369 |
-
"in_force": "2005-12-12",
|
| 2370 |
-
"status": "in force",
|
| 2371 |
-
"current_to": "2024-11-11",
|
| 2372 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-123.html",
|
| 2373 |
-
"id": "C-1.4-s123",
|
| 2374 |
-
"text": "123 [Amendment]",
|
| 2375 |
-
"citation": "CBSA Act, s. 123"
|
| 2376 |
-
},
|
| 2377 |
-
{
|
| 2378 |
-
"act_code": "C-1.4",
|
| 2379 |
-
"act_short": "CBSA Act",
|
| 2380 |
-
"act_name": "Canada Border Services Agency Act",
|
| 2381 |
-
"section": "124",
|
| 2382 |
-
"marginal_note": "",
|
| 2383 |
-
"part": "",
|
| 2384 |
-
"division": "",
|
| 2385 |
-
"heading": "Proceeds of Crime (Money Laundering) and Terrorist Financing Act",
|
| 2386 |
-
"history": "",
|
| 2387 |
-
"last_amended": "2005-12-12",
|
| 2388 |
-
"in_force": "2005-12-12",
|
| 2389 |
-
"status": "in force",
|
| 2390 |
-
"current_to": "2024-11-11",
|
| 2391 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-124.html",
|
| 2392 |
-
"id": "C-1.4-s124",
|
| 2393 |
-
"text": "124 [Amendments]",
|
| 2394 |
-
"citation": "CBSA Act, s. 124"
|
| 2395 |
-
},
|
| 2396 |
-
{
|
| 2397 |
-
"act_code": "C-1.4",
|
| 2398 |
-
"act_short": "CBSA Act",
|
| 2399 |
-
"act_name": "Canada Border Services Agency Act",
|
| 2400 |
-
"section": "125",
|
| 2401 |
-
"marginal_note": "",
|
| 2402 |
-
"part": "",
|
| 2403 |
-
"division": "",
|
| 2404 |
-
"heading": "Proceeds of Crime (Money Laundering) and Terrorist Financing Act",
|
| 2405 |
-
"history": "",
|
| 2406 |
-
"last_amended": "2005-12-12",
|
| 2407 |
-
"in_force": "2005-12-12",
|
| 2408 |
-
"status": "in force",
|
| 2409 |
-
"current_to": "2024-11-11",
|
| 2410 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-125.html",
|
| 2411 |
-
"id": "C-1.4-s125",
|
| 2412 |
-
"text": "125 [Amendment]",
|
| 2413 |
-
"citation": "CBSA Act, s. 125"
|
| 2414 |
-
},
|
| 2415 |
-
{
|
| 2416 |
-
"act_code": "C-1.4",
|
| 2417 |
-
"act_short": "CBSA Act",
|
| 2418 |
-
"act_name": "Canada Border Services Agency Act",
|
| 2419 |
-
"section": "126",
|
| 2420 |
-
"marginal_note": "",
|
| 2421 |
-
"part": "",
|
| 2422 |
-
"division": "",
|
| 2423 |
-
"heading": "Proceeds of Crime (Money Laundering) and Terrorist Financing Act",
|
| 2424 |
-
"history": "",
|
| 2425 |
-
"last_amended": "2005-12-12",
|
| 2426 |
-
"in_force": "2005-12-12",
|
| 2427 |
-
"status": "in force",
|
| 2428 |
-
"current_to": "2024-11-11",
|
| 2429 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-126.html",
|
| 2430 |
-
"id": "C-1.4-s126",
|
| 2431 |
-
"text": "126 [Amendments]",
|
| 2432 |
-
"citation": "CBSA Act, s. 126"
|
| 2433 |
-
},
|
| 2434 |
-
{
|
| 2435 |
-
"act_code": "C-1.4",
|
| 2436 |
-
"act_short": "CBSA Act",
|
| 2437 |
-
"act_name": "Canada Border Services Agency Act",
|
| 2438 |
-
"section": "127",
|
| 2439 |
-
"marginal_note": "",
|
| 2440 |
-
"part": "",
|
| 2441 |
-
"division": "",
|
| 2442 |
-
"heading": "Proceeds of Crime (Money Laundering) and Terrorist Financing Act",
|
| 2443 |
-
"history": "",
|
| 2444 |
-
"last_amended": "2005-12-12",
|
| 2445 |
-
"in_force": "2005-12-12",
|
| 2446 |
-
"status": "in force",
|
| 2447 |
-
"current_to": "2024-11-11",
|
| 2448 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-127.html",
|
| 2449 |
-
"id": "C-1.4-s127",
|
| 2450 |
-
"text": "127 [Amendments]",
|
| 2451 |
-
"citation": "CBSA Act, s. 127"
|
| 2452 |
-
},
|
| 2453 |
-
{
|
| 2454 |
-
"act_code": "C-1.4",
|
| 2455 |
-
"act_short": "CBSA Act",
|
| 2456 |
-
"act_name": "Canada Border Services Agency Act",
|
| 2457 |
-
"section": "128",
|
| 2458 |
-
"marginal_note": "",
|
| 2459 |
-
"part": "",
|
| 2460 |
-
"division": "",
|
| 2461 |
-
"heading": "Public Service Superannuation Act",
|
| 2462 |
-
"history": "",
|
| 2463 |
-
"last_amended": "2005-12-12",
|
| 2464 |
-
"in_force": "2005-12-12",
|
| 2465 |
-
"status": "in force",
|
| 2466 |
-
"current_to": "2024-11-11",
|
| 2467 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-128.html",
|
| 2468 |
-
"id": "C-1.4-s128",
|
| 2469 |
-
"text": "128 [Amendment]",
|
| 2470 |
-
"citation": "CBSA Act, s. 128"
|
| 2471 |
-
},
|
| 2472 |
-
{
|
| 2473 |
-
"act_code": "C-1.4",
|
| 2474 |
-
"act_short": "CBSA Act",
|
| 2475 |
-
"act_name": "Canada Border Services Agency Act",
|
| 2476 |
-
"section": "129",
|
| 2477 |
-
"marginal_note": "",
|
| 2478 |
-
"part": "",
|
| 2479 |
-
"division": "",
|
| 2480 |
-
"heading": "Royal Canadian Mint Act",
|
| 2481 |
-
"history": "",
|
| 2482 |
-
"last_amended": "2005-12-12",
|
| 2483 |
-
"in_force": "2005-12-12",
|
| 2484 |
-
"status": "in force",
|
| 2485 |
-
"current_to": "2024-11-11",
|
| 2486 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-129.html",
|
| 2487 |
-
"id": "C-1.4-s129",
|
| 2488 |
-
"text": "129 [Amendment]",
|
| 2489 |
-
"citation": "CBSA Act, s. 129"
|
| 2490 |
-
},
|
| 2491 |
-
{
|
| 2492 |
-
"act_code": "C-1.4",
|
| 2493 |
-
"act_short": "CBSA Act",
|
| 2494 |
-
"act_name": "Canada Border Services Agency Act",
|
| 2495 |
-
"section": "130",
|
| 2496 |
-
"marginal_note": "",
|
| 2497 |
-
"part": "",
|
| 2498 |
-
"division": "",
|
| 2499 |
-
"heading": "Royal Canadian Mint Act",
|
| 2500 |
-
"history": "",
|
| 2501 |
-
"last_amended": "2005-12-12",
|
| 2502 |
-
"in_force": "2005-12-12",
|
| 2503 |
-
"status": "in force",
|
| 2504 |
-
"current_to": "2024-11-11",
|
| 2505 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-130.html",
|
| 2506 |
-
"id": "C-1.4-s130",
|
| 2507 |
-
"text": "130 [Amendment]",
|
| 2508 |
-
"citation": "CBSA Act, s. 130"
|
| 2509 |
-
},
|
| 2510 |
-
{
|
| 2511 |
-
"act_code": "C-1.4",
|
| 2512 |
-
"act_short": "CBSA Act",
|
| 2513 |
-
"act_name": "Canada Border Services Agency Act",
|
| 2514 |
-
"section": "131",
|
| 2515 |
-
"marginal_note": "",
|
| 2516 |
-
"part": "",
|
| 2517 |
-
"division": "",
|
| 2518 |
-
"heading": "Seeds Act",
|
| 2519 |
-
"history": "",
|
| 2520 |
-
"last_amended": "2005-12-12",
|
| 2521 |
-
"in_force": "2005-12-12",
|
| 2522 |
-
"status": "in force",
|
| 2523 |
-
"current_to": "2024-11-11",
|
| 2524 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-131.html",
|
| 2525 |
-
"id": "C-1.4-s131",
|
| 2526 |
-
"text": "131 [Amendment]",
|
| 2527 |
-
"citation": "CBSA Act, s. 131"
|
| 2528 |
-
},
|
| 2529 |
-
{
|
| 2530 |
-
"act_code": "C-1.4",
|
| 2531 |
-
"act_short": "CBSA Act",
|
| 2532 |
-
"act_name": "Canada Border Services Agency Act",
|
| 2533 |
-
"section": "132",
|
| 2534 |
-
"marginal_note": "",
|
| 2535 |
-
"part": "",
|
| 2536 |
-
"division": "",
|
| 2537 |
-
"heading": "Special Import Measures Act",
|
| 2538 |
-
"history": "",
|
| 2539 |
-
"last_amended": "2005-12-12",
|
| 2540 |
-
"in_force": "2005-12-12",
|
| 2541 |
-
"status": "in force",
|
| 2542 |
-
"current_to": "2024-11-11",
|
| 2543 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-132.html",
|
| 2544 |
-
"id": "C-1.4-s132",
|
| 2545 |
-
"text": "132 [Amendments]",
|
| 2546 |
-
"citation": "CBSA Act, s. 132"
|
| 2547 |
-
},
|
| 2548 |
-
{
|
| 2549 |
-
"act_code": "C-1.4",
|
| 2550 |
-
"act_short": "CBSA Act",
|
| 2551 |
-
"act_name": "Canada Border Services Agency Act",
|
| 2552 |
-
"section": "133",
|
| 2553 |
-
"marginal_note": "",
|
| 2554 |
-
"part": "",
|
| 2555 |
-
"division": "",
|
| 2556 |
-
"heading": "Special Import Measures Act",
|
| 2557 |
-
"history": "",
|
| 2558 |
-
"last_amended": "2005-12-12",
|
| 2559 |
-
"in_force": "2005-12-12",
|
| 2560 |
-
"status": "in force",
|
| 2561 |
-
"current_to": "2024-11-11",
|
| 2562 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-133.html",
|
| 2563 |
-
"id": "C-1.4-s133",
|
| 2564 |
-
"text": "133 [Amendment]",
|
| 2565 |
-
"citation": "CBSA Act, s. 133"
|
| 2566 |
-
},
|
| 2567 |
-
{
|
| 2568 |
-
"act_code": "C-1.4",
|
| 2569 |
-
"act_short": "CBSA Act",
|
| 2570 |
-
"act_name": "Canada Border Services Agency Act",
|
| 2571 |
-
"section": "134",
|
| 2572 |
-
"marginal_note": "",
|
| 2573 |
-
"part": "",
|
| 2574 |
-
"division": "",
|
| 2575 |
-
"heading": "Special Import Measures Act",
|
| 2576 |
-
"history": "",
|
| 2577 |
-
"last_amended": "2005-12-12",
|
| 2578 |
-
"in_force": "2005-12-12",
|
| 2579 |
-
"status": "in force",
|
| 2580 |
-
"current_to": "2024-11-11",
|
| 2581 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-134.html",
|
| 2582 |
-
"id": "C-1.4-s134",
|
| 2583 |
-
"text": "134 [Amendments]",
|
| 2584 |
-
"citation": "CBSA Act, s. 134"
|
| 2585 |
-
},
|
| 2586 |
-
{
|
| 2587 |
-
"act_code": "C-1.4",
|
| 2588 |
-
"act_short": "CBSA Act",
|
| 2589 |
-
"act_name": "Canada Border Services Agency Act",
|
| 2590 |
-
"section": "135",
|
| 2591 |
-
"marginal_note": "",
|
| 2592 |
-
"part": "",
|
| 2593 |
-
"division": "",
|
| 2594 |
-
"heading": "Special Import Measures Act",
|
| 2595 |
-
"history": "",
|
| 2596 |
-
"last_amended": "2005-12-12",
|
| 2597 |
-
"in_force": "2005-12-12",
|
| 2598 |
-
"status": "in force",
|
| 2599 |
-
"current_to": "2024-11-11",
|
| 2600 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-135.html",
|
| 2601 |
-
"id": "C-1.4-s135",
|
| 2602 |
-
"text": "135 [Amendments]",
|
| 2603 |
-
"citation": "CBSA Act, s. 135"
|
| 2604 |
-
},
|
| 2605 |
-
{
|
| 2606 |
-
"act_code": "C-1.4",
|
| 2607 |
-
"act_short": "CBSA Act",
|
| 2608 |
-
"act_name": "Canada Border Services Agency Act",
|
| 2609 |
-
"section": "136",
|
| 2610 |
-
"marginal_note": "",
|
| 2611 |
-
"part": "",
|
| 2612 |
-
"division": "",
|
| 2613 |
-
"heading": "Special Import Measures Act",
|
| 2614 |
-
"history": "",
|
| 2615 |
-
"last_amended": "2005-12-12",
|
| 2616 |
-
"in_force": "2005-12-12",
|
| 2617 |
-
"status": "in force",
|
| 2618 |
-
"current_to": "2024-11-11",
|
| 2619 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-136.html",
|
| 2620 |
-
"id": "C-1.4-s136",
|
| 2621 |
-
"text": "136 [Amendments]",
|
| 2622 |
-
"citation": "CBSA Act, s. 136"
|
| 2623 |
-
},
|
| 2624 |
-
{
|
| 2625 |
-
"act_code": "C-1.4",
|
| 2626 |
-
"act_short": "CBSA Act",
|
| 2627 |
-
"act_name": "Canada Border Services Agency Act",
|
| 2628 |
-
"section": "137",
|
| 2629 |
-
"marginal_note": "",
|
| 2630 |
-
"part": "",
|
| 2631 |
-
"division": "",
|
| 2632 |
-
"heading": "Special Import Measures Act",
|
| 2633 |
-
"history": "",
|
| 2634 |
-
"last_amended": "2005-12-12",
|
| 2635 |
-
"in_force": "2005-12-12",
|
| 2636 |
-
"status": "in force",
|
| 2637 |
-
"current_to": "2024-11-11",
|
| 2638 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-137.html",
|
| 2639 |
-
"id": "C-1.4-s137",
|
| 2640 |
-
"text": "137 [Related provision]",
|
| 2641 |
-
"citation": "CBSA Act, s. 137"
|
| 2642 |
-
},
|
| 2643 |
-
{
|
| 2644 |
-
"act_code": "C-1.4",
|
| 2645 |
-
"act_short": "CBSA Act",
|
| 2646 |
-
"act_name": "Canada Border Services Agency Act",
|
| 2647 |
-
"section": "138",
|
| 2648 |
-
"marginal_note": "",
|
| 2649 |
-
"part": "",
|
| 2650 |
-
"division": "",
|
| 2651 |
-
"heading": "Terminology Changes",
|
| 2652 |
-
"history": "",
|
| 2653 |
-
"last_amended": "2005-12-12",
|
| 2654 |
-
"in_force": "2005-12-12",
|
| 2655 |
-
"status": "in force",
|
| 2656 |
-
"current_to": "2024-11-11",
|
| 2657 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-138.html",
|
| 2658 |
-
"id": "C-1.4-s138",
|
| 2659 |
-
"text": "138 [Amendments]",
|
| 2660 |
-
"citation": "CBSA Act, s. 138"
|
| 2661 |
-
},
|
| 2662 |
-
{
|
| 2663 |
-
"act_code": "C-1.4",
|
| 2664 |
-
"act_short": "CBSA Act",
|
| 2665 |
-
"act_name": "Canada Border Services Agency Act",
|
| 2666 |
-
"section": "139",
|
| 2667 |
-
"marginal_note": "",
|
| 2668 |
-
"part": "",
|
| 2669 |
-
"division": "",
|
| 2670 |
-
"heading": "Terminology Changes",
|
| 2671 |
-
"history": "",
|
| 2672 |
-
"last_amended": "2005-12-12",
|
| 2673 |
-
"in_force": "2005-12-12",
|
| 2674 |
-
"status": "in force",
|
| 2675 |
-
"current_to": "2024-11-11",
|
| 2676 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-139.html",
|
| 2677 |
-
"id": "C-1.4-s139",
|
| 2678 |
-
"text": "139 [Amendments]",
|
| 2679 |
-
"citation": "CBSA Act, s. 139"
|
| 2680 |
-
},
|
| 2681 |
-
{
|
| 2682 |
-
"act_code": "C-1.4",
|
| 2683 |
-
"act_short": "CBSA Act",
|
| 2684 |
-
"act_name": "Canada Border Services Agency Act",
|
| 2685 |
-
"section": "140",
|
| 2686 |
-
"marginal_note": "",
|
| 2687 |
-
"part": "",
|
| 2688 |
-
"division": "",
|
| 2689 |
-
"heading": "Terminology Changes",
|
| 2690 |
-
"history": "",
|
| 2691 |
-
"last_amended": "2005-12-12",
|
| 2692 |
-
"in_force": "2005-12-12",
|
| 2693 |
-
"status": "in force",
|
| 2694 |
-
"current_to": "2024-11-11",
|
| 2695 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-140.html",
|
| 2696 |
-
"id": "C-1.4-s140",
|
| 2697 |
-
"text": "140 [Amendments]",
|
| 2698 |
-
"citation": "CBSA Act, s. 140"
|
| 2699 |
-
},
|
| 2700 |
-
{
|
| 2701 |
-
"act_code": "C-1.4",
|
| 2702 |
-
"act_short": "CBSA Act",
|
| 2703 |
-
"act_name": "Canada Border Services Agency Act",
|
| 2704 |
-
"section": "141",
|
| 2705 |
-
"marginal_note": "",
|
| 2706 |
-
"part": "",
|
| 2707 |
-
"division": "",
|
| 2708 |
-
"heading": "Terminology Changes",
|
| 2709 |
-
"history": "",
|
| 2710 |
-
"last_amended": "2005-12-12",
|
| 2711 |
-
"in_force": "2005-12-12",
|
| 2712 |
-
"status": "in force",
|
| 2713 |
-
"current_to": "2024-11-11",
|
| 2714 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-141.html",
|
| 2715 |
-
"id": "C-1.4-s141",
|
| 2716 |
-
"text": "141 [Amendments]",
|
| 2717 |
-
"citation": "CBSA Act, s. 141"
|
| 2718 |
-
},
|
| 2719 |
-
{
|
| 2720 |
-
"act_code": "C-1.4",
|
| 2721 |
-
"act_short": "CBSA Act",
|
| 2722 |
-
"act_name": "Canada Border Services Agency Act",
|
| 2723 |
-
"section": "142",
|
| 2724 |
-
"marginal_note": "",
|
| 2725 |
-
"part": "",
|
| 2726 |
-
"division": "",
|
| 2727 |
-
"heading": "Terminology Changes",
|
| 2728 |
-
"history": "",
|
| 2729 |
-
"last_amended": "2005-12-12",
|
| 2730 |
-
"in_force": "2005-12-12",
|
| 2731 |
-
"status": "in force",
|
| 2732 |
-
"current_to": "2024-11-11",
|
| 2733 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-142.html",
|
| 2734 |
-
"id": "C-1.4-s142",
|
| 2735 |
-
"text": "142 [Amendments]",
|
| 2736 |
-
"citation": "CBSA Act, s. 142"
|
| 2737 |
-
},
|
| 2738 |
-
{
|
| 2739 |
-
"act_code": "C-1.4",
|
| 2740 |
-
"act_short": "CBSA Act",
|
| 2741 |
-
"act_name": "Canada Border Services Agency Act",
|
| 2742 |
-
"section": "143",
|
| 2743 |
-
"marginal_note": "",
|
| 2744 |
-
"part": "",
|
| 2745 |
-
"division": "",
|
| 2746 |
-
"heading": "Terminology Changes",
|
| 2747 |
-
"history": "",
|
| 2748 |
-
"last_amended": "2005-12-12",
|
| 2749 |
-
"in_force": "2005-12-12",
|
| 2750 |
-
"status": "in force",
|
| 2751 |
-
"current_to": "2024-11-11",
|
| 2752 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-143.html",
|
| 2753 |
-
"id": "C-1.4-s143",
|
| 2754 |
-
"text": "143 [Amendment]",
|
| 2755 |
-
"citation": "CBSA Act, s. 143"
|
| 2756 |
-
},
|
| 2757 |
-
{
|
| 2758 |
-
"act_code": "C-1.4",
|
| 2759 |
-
"act_short": "CBSA Act",
|
| 2760 |
-
"act_name": "Canada Border Services Agency Act",
|
| 2761 |
-
"section": "144",
|
| 2762 |
-
"marginal_note": "",
|
| 2763 |
-
"part": "",
|
| 2764 |
-
"division": "",
|
| 2765 |
-
"heading": "Coordinating Amendments",
|
| 2766 |
-
"history": "",
|
| 2767 |
-
"last_amended": "2005-11-03",
|
| 2768 |
-
"in_force": "2005-11-03",
|
| 2769 |
-
"status": "in force",
|
| 2770 |
-
"current_to": "2024-11-11",
|
| 2771 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-144.html",
|
| 2772 |
-
"id": "C-1.4-s144",
|
| 2773 |
-
"text": "144 [Amendments]",
|
| 2774 |
-
"citation": "CBSA Act, s. 144"
|
| 2775 |
-
},
|
| 2776 |
-
{
|
| 2777 |
-
"act_code": "C-1.4",
|
| 2778 |
-
"act_short": "CBSA Act",
|
| 2779 |
-
"act_name": "Canada Border Services Agency Act",
|
| 2780 |
-
"section": "145",
|
| 2781 |
-
"marginal_note": "",
|
| 2782 |
-
"part": "",
|
| 2783 |
-
"division": "",
|
| 2784 |
-
"heading": "Coordinating Amendments",
|
| 2785 |
-
"history": "",
|
| 2786 |
-
"last_amended": "2005-11-03",
|
| 2787 |
-
"in_force": "2005-11-03",
|
| 2788 |
-
"status": "in force",
|
| 2789 |
-
"current_to": "2024-11-11",
|
| 2790 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-145.html",
|
| 2791 |
-
"id": "C-1.4-s145",
|
| 2792 |
-
"text": "145 [Amendments]",
|
| 2793 |
-
"citation": "CBSA Act, s. 145"
|
| 2794 |
-
},
|
| 2795 |
-
{
|
| 2796 |
-
"act_code": "C-1.4",
|
| 2797 |
-
"act_short": "CBSA Act",
|
| 2798 |
-
"act_name": "Canada Border Services Agency Act",
|
| 2799 |
-
"section": "146",
|
| 2800 |
-
"marginal_note": "",
|
| 2801 |
-
"part": "",
|
| 2802 |
-
"division": "",
|
| 2803 |
-
"heading": "Coordinating Amendments",
|
| 2804 |
-
"history": "",
|
| 2805 |
-
"last_amended": "2005-11-03",
|
| 2806 |
-
"in_force": "2005-11-03",
|
| 2807 |
-
"status": "in force",
|
| 2808 |
-
"current_to": "2024-11-11",
|
| 2809 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-1.4/section-146.html",
|
| 2810 |
-
"id": "C-1.4-s146",
|
| 2811 |
-
"text": "146 [Amendment]",
|
| 2812 |
-
"citation": "CBSA Act, s. 146"
|
| 2813 |
-
},
|
| 2814 |
{
|
| 2815 |
"act_code": "C-1.4",
|
| 2816 |
"act_short": "CBSA Act",
|
|
|
|
| 588 |
"text": "29 The Minister of National Revenue is the Minister for the purposes of the Royal Canadian Mint Act until another member of the Queen’s Privy Council for Canada is designated under section 2.1 of that Act, as enacted by section 130 of this Act.",
|
| 589 |
"citation": "CBSA Act, s. 29"
|
| 590 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 591 |
{
|
| 592 |
"act_code": "C-1.4",
|
| 593 |
"act_short": "CBSA Act",
|
|
@@ -3875,63 +3875,6 @@
|
|
| 3875 |
"text": "161\n(1) The Governor in Council may make regulations that the Governor in Council considers necessary to provide for any transitional matter arising from the coming into force of any provision of this Act.\n(2) [Retroactive effect] Regulations made under subsection (1) may, if they so provide, be retroactive and have effect with respect to any period before they are made.",
|
| 3876 |
"citation": "Cannabis Act, s. 161"
|
| 3877 |
},
|
| 3878 |
-
{
|
| 3879 |
-
"act_code": "C-24.5",
|
| 3880 |
-
"act_short": "Cannabis Act",
|
| 3881 |
-
"act_name": "Cannabis Act",
|
| 3882 |
-
"section": "162",
|
| 3883 |
-
"marginal_note": "",
|
| 3884 |
-
"part": "PART 12 - Transitional Provisions and Related, Consequential and Coordinating Amendments",
|
| 3885 |
-
"division": "",
|
| 3886 |
-
"heading": "Non-smokers’ Health Act",
|
| 3887 |
-
"history": "",
|
| 3888 |
-
"last_amended": "2018-10-17",
|
| 3889 |
-
"in_force": "2018-10-17",
|
| 3890 |
-
"status": "in force",
|
| 3891 |
-
"current_to": "2026-03-31",
|
| 3892 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-162.html",
|
| 3893 |
-
"id": "C-24.5-s162",
|
| 3894 |
-
"text": "162 [Amendments]",
|
| 3895 |
-
"citation": "Cannabis Act, s. 162"
|
| 3896 |
-
},
|
| 3897 |
-
{
|
| 3898 |
-
"act_code": "C-24.5",
|
| 3899 |
-
"act_short": "Cannabis Act",
|
| 3900 |
-
"act_name": "Cannabis Act",
|
| 3901 |
-
"section": "163",
|
| 3902 |
-
"marginal_note": "",
|
| 3903 |
-
"part": "PART 12 - Transitional Provisions and Related, Consequential and Coordinating Amendments",
|
| 3904 |
-
"division": "",
|
| 3905 |
-
"heading": "Non-smokers’ Health Act",
|
| 3906 |
-
"history": "",
|
| 3907 |
-
"last_amended": "2018-10-17",
|
| 3908 |
-
"in_force": "2018-10-17",
|
| 3909 |
-
"status": "in force",
|
| 3910 |
-
"current_to": "2026-03-31",
|
| 3911 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-163.html",
|
| 3912 |
-
"id": "C-24.5-s163",
|
| 3913 |
-
"text": "163 [Amendment]",
|
| 3914 |
-
"citation": "Cannabis Act, s. 163"
|
| 3915 |
-
},
|
| 3916 |
-
{
|
| 3917 |
-
"act_code": "C-24.5",
|
| 3918 |
-
"act_short": "Cannabis Act",
|
| 3919 |
-
"act_name": "Cannabis Act",
|
| 3920 |
-
"section": "163.1",
|
| 3921 |
-
"marginal_note": "",
|
| 3922 |
-
"part": "PART 12 - Transitional Provisions and Related, Consequential and Coordinating Amendments",
|
| 3923 |
-
"division": "",
|
| 3924 |
-
"heading": "Non-smokers’ Health Act",
|
| 3925 |
-
"history": "",
|
| 3926 |
-
"last_amended": "2018-10-17",
|
| 3927 |
-
"in_force": "2018-10-17",
|
| 3928 |
-
"status": "in force",
|
| 3929 |
-
"current_to": "2026-03-31",
|
| 3930 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-163.1.html",
|
| 3931 |
-
"id": "C-24.5-s163.1",
|
| 3932 |
-
"text": "163.1 [Amendment]",
|
| 3933 |
-
"citation": "Cannabis Act, s. 163.1"
|
| 3934 |
-
},
|
| 3935 |
{
|
| 3936 |
"act_code": "C-24.5",
|
| 3937 |
"act_short": "Cannabis Act",
|
|
@@ -3951,1203 +3894,6 @@
|
|
| 3951 |
"text": "164 [Repealed before coming into force, 2018, c. 16, s. 189]",
|
| 3952 |
"citation": "Cannabis Act, s. 164"
|
| 3953 |
},
|
| 3954 |
-
{
|
| 3955 |
-
"act_code": "C-24.5",
|
| 3956 |
-
"act_short": "Cannabis Act",
|
| 3957 |
-
"act_name": "Cannabis Act",
|
| 3958 |
-
"section": "165",
|
| 3959 |
-
"marginal_note": "",
|
| 3960 |
-
"part": "PART 12 - Transitional Provisions and Related, Consequential and Coordinating Amendments",
|
| 3961 |
-
"division": "",
|
| 3962 |
-
"heading": "Criminal Records Act",
|
| 3963 |
-
"history": "",
|
| 3964 |
-
"last_amended": "2018-10-17",
|
| 3965 |
-
"in_force": "2018-10-17",
|
| 3966 |
-
"status": "in force",
|
| 3967 |
-
"current_to": "2026-03-31",
|
| 3968 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-165.html",
|
| 3969 |
-
"id": "C-24.5-s165",
|
| 3970 |
-
"text": "165 [Amendment]",
|
| 3971 |
-
"citation": "Cannabis Act, s. 165"
|
| 3972 |
-
},
|
| 3973 |
-
{
|
| 3974 |
-
"act_code": "C-24.5",
|
| 3975 |
-
"act_short": "Cannabis Act",
|
| 3976 |
-
"act_name": "Cannabis Act",
|
| 3977 |
-
"section": "166",
|
| 3978 |
-
"marginal_note": "",
|
| 3979 |
-
"part": "PART 12 - Transitional Provisions and Related, Consequential and Coordinating Amendments",
|
| 3980 |
-
"division": "",
|
| 3981 |
-
"heading": "Identification of Criminals Act",
|
| 3982 |
-
"history": "",
|
| 3983 |
-
"last_amended": "2018-10-17",
|
| 3984 |
-
"in_force": "2018-10-17",
|
| 3985 |
-
"status": "in force",
|
| 3986 |
-
"current_to": "2026-03-31",
|
| 3987 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-166.html",
|
| 3988 |
-
"id": "C-24.5-s166",
|
| 3989 |
-
"text": "166 [Amendment]",
|
| 3990 |
-
"citation": "Cannabis Act, s. 166"
|
| 3991 |
-
},
|
| 3992 |
-
{
|
| 3993 |
-
"act_code": "C-24.5",
|
| 3994 |
-
"act_short": "Cannabis Act",
|
| 3995 |
-
"act_name": "Cannabis Act",
|
| 3996 |
-
"section": "167",
|
| 3997 |
-
"marginal_note": "",
|
| 3998 |
-
"part": "PART 12 - Transitional Provisions and Related, Consequential and Coordinating Amendments",
|
| 3999 |
-
"division": "",
|
| 4000 |
-
"heading": "Identification of Criminals Act",
|
| 4001 |
-
"history": "",
|
| 4002 |
-
"last_amended": "2018-10-17",
|
| 4003 |
-
"in_force": "2018-10-17",
|
| 4004 |
-
"status": "in force",
|
| 4005 |
-
"current_to": "2026-03-31",
|
| 4006 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-167.html",
|
| 4007 |
-
"id": "C-24.5-s167",
|
| 4008 |
-
"text": "167 [Amendment]",
|
| 4009 |
-
"citation": "Cannabis Act, s. 167"
|
| 4010 |
-
},
|
| 4011 |
-
{
|
| 4012 |
-
"act_code": "C-24.5",
|
| 4013 |
-
"act_short": "Cannabis Act",
|
| 4014 |
-
"act_name": "Cannabis Act",
|
| 4015 |
-
"section": "168",
|
| 4016 |
-
"marginal_note": "",
|
| 4017 |
-
"part": "PART 12 - Transitional Provisions and Related, Consequential and Coordinating Amendments",
|
| 4018 |
-
"division": "",
|
| 4019 |
-
"heading": "National Defence Act",
|
| 4020 |
-
"history": "",
|
| 4021 |
-
"last_amended": "2018-10-17",
|
| 4022 |
-
"in_force": "2018-10-17",
|
| 4023 |
-
"status": "in force",
|
| 4024 |
-
"current_to": "2026-03-31",
|
| 4025 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-168.html",
|
| 4026 |
-
"id": "C-24.5-s168",
|
| 4027 |
-
"text": "168 [Amendment]",
|
| 4028 |
-
"citation": "Cannabis Act, s. 168"
|
| 4029 |
-
},
|
| 4030 |
-
{
|
| 4031 |
-
"act_code": "C-24.5",
|
| 4032 |
-
"act_short": "Cannabis Act",
|
| 4033 |
-
"act_name": "Cannabis Act",
|
| 4034 |
-
"section": "169",
|
| 4035 |
-
"marginal_note": "",
|
| 4036 |
-
"part": "PART 12 - Transitional Provisions and Related, Consequential and Coordinating Amendments",
|
| 4037 |
-
"division": "",
|
| 4038 |
-
"heading": "Customs Act",
|
| 4039 |
-
"history": "",
|
| 4040 |
-
"last_amended": "2018-10-17",
|
| 4041 |
-
"in_force": "2018-10-17",
|
| 4042 |
-
"status": "in force",
|
| 4043 |
-
"current_to": "2026-03-31",
|
| 4044 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-169.html",
|
| 4045 |
-
"id": "C-24.5-s169",
|
| 4046 |
-
"text": "169 [Amendment]",
|
| 4047 |
-
"citation": "Cannabis Act, s. 169"
|
| 4048 |
-
},
|
| 4049 |
-
{
|
| 4050 |
-
"act_code": "C-24.5",
|
| 4051 |
-
"act_short": "Cannabis Act",
|
| 4052 |
-
"act_name": "Cannabis Act",
|
| 4053 |
-
"section": "170",
|
| 4054 |
-
"marginal_note": "",
|
| 4055 |
-
"part": "PART 12 - Transitional Provisions and Related, Consequential and Coordinating Amendments",
|
| 4056 |
-
"division": "",
|
| 4057 |
-
"heading": "Customs Act",
|
| 4058 |
-
"history": "",
|
| 4059 |
-
"last_amended": "2018-10-17",
|
| 4060 |
-
"in_force": "2018-10-17",
|
| 4061 |
-
"status": "in force",
|
| 4062 |
-
"current_to": "2026-03-31",
|
| 4063 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-170.html",
|
| 4064 |
-
"id": "C-24.5-s170",
|
| 4065 |
-
"text": "170 [Amendment]",
|
| 4066 |
-
"citation": "Cannabis Act, s. 170"
|
| 4067 |
-
},
|
| 4068 |
-
{
|
| 4069 |
-
"act_code": "C-24.5",
|
| 4070 |
-
"act_short": "Cannabis Act",
|
| 4071 |
-
"act_name": "Cannabis Act",
|
| 4072 |
-
"section": "171",
|
| 4073 |
-
"marginal_note": "",
|
| 4074 |
-
"part": "PART 12 - Transitional Provisions and Related, Consequential and Coordinating Amendments",
|
| 4075 |
-
"division": "",
|
| 4076 |
-
"heading": "Mutual Legal Assistance in Criminal Matters Act",
|
| 4077 |
-
"history": "",
|
| 4078 |
-
"last_amended": "2018-10-17",
|
| 4079 |
-
"in_force": "2018-10-17",
|
| 4080 |
-
"status": "in force",
|
| 4081 |
-
"current_to": "2026-03-31",
|
| 4082 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-171.html",
|
| 4083 |
-
"id": "C-24.5-s171",
|
| 4084 |
-
"text": "171 [Amendments]",
|
| 4085 |
-
"citation": "Cannabis Act, s. 171"
|
| 4086 |
-
},
|
| 4087 |
-
{
|
| 4088 |
-
"act_code": "C-24.5",
|
| 4089 |
-
"act_short": "Cannabis Act",
|
| 4090 |
-
"act_name": "Cannabis Act",
|
| 4091 |
-
"section": "172",
|
| 4092 |
-
"marginal_note": "",
|
| 4093 |
-
"part": "PART 12 - Transitional Provisions and Related, Consequential and Coordinating Amendments",
|
| 4094 |
-
"division": "",
|
| 4095 |
-
"heading": "Corrections and Conditional Release Act",
|
| 4096 |
-
"history": "",
|
| 4097 |
-
"last_amended": "2018-10-17",
|
| 4098 |
-
"in_force": "2018-10-17",
|
| 4099 |
-
"status": "in force",
|
| 4100 |
-
"current_to": "2026-03-31",
|
| 4101 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-172.html",
|
| 4102 |
-
"id": "C-24.5-s172",
|
| 4103 |
-
"text": "172 [Amendment]",
|
| 4104 |
-
"citation": "Cannabis Act, s. 172"
|
| 4105 |
-
},
|
| 4106 |
-
{
|
| 4107 |
-
"act_code": "C-24.5",
|
| 4108 |
-
"act_short": "Cannabis Act",
|
| 4109 |
-
"act_name": "Cannabis Act",
|
| 4110 |
-
"section": "173",
|
| 4111 |
-
"marginal_note": "",
|
| 4112 |
-
"part": "PART 12 - Transitional Provisions and Related, Consequential and Coordinating Amendments",
|
| 4113 |
-
"division": "",
|
| 4114 |
-
"heading": "Seized Property Management Act",
|
| 4115 |
-
"history": "",
|
| 4116 |
-
"last_amended": "2018-10-17",
|
| 4117 |
-
"in_force": "2018-10-17",
|
| 4118 |
-
"status": "in force",
|
| 4119 |
-
"current_to": "2026-03-31",
|
| 4120 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-173.html",
|
| 4121 |
-
"id": "C-24.5-s173",
|
| 4122 |
-
"text": "173 [Amendment]",
|
| 4123 |
-
"citation": "Cannabis Act, s. 173"
|
| 4124 |
-
},
|
| 4125 |
-
{
|
| 4126 |
-
"act_code": "C-24.5",
|
| 4127 |
-
"act_short": "Cannabis Act",
|
| 4128 |
-
"act_name": "Cannabis Act",
|
| 4129 |
-
"section": "174",
|
| 4130 |
-
"marginal_note": "",
|
| 4131 |
-
"part": "PART 12 - Transitional Provisions and Related, Consequential and Coordinating Amendments",
|
| 4132 |
-
"division": "",
|
| 4133 |
-
"heading": "Seized Property Management Act",
|
| 4134 |
-
"history": "",
|
| 4135 |
-
"last_amended": "2018-10-17",
|
| 4136 |
-
"in_force": "2018-10-17",
|
| 4137 |
-
"status": "in force",
|
| 4138 |
-
"current_to": "2026-03-31",
|
| 4139 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-174.html",
|
| 4140 |
-
"id": "C-24.5-s174",
|
| 4141 |
-
"text": "174 [Amendment]",
|
| 4142 |
-
"citation": "Cannabis Act, s. 174"
|
| 4143 |
-
},
|
| 4144 |
-
{
|
| 4145 |
-
"act_code": "C-24.5",
|
| 4146 |
-
"act_short": "Cannabis Act",
|
| 4147 |
-
"act_name": "Cannabis Act",
|
| 4148 |
-
"section": "175",
|
| 4149 |
-
"marginal_note": "",
|
| 4150 |
-
"part": "PART 12 - Transitional Provisions and Related, Consequential and Coordinating Amendments",
|
| 4151 |
-
"division": "",
|
| 4152 |
-
"heading": "Seized Property Management Act",
|
| 4153 |
-
"history": "",
|
| 4154 |
-
"last_amended": "2018-10-17",
|
| 4155 |
-
"in_force": "2018-10-17",
|
| 4156 |
-
"status": "in force",
|
| 4157 |
-
"current_to": "2026-03-31",
|
| 4158 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-175.html",
|
| 4159 |
-
"id": "C-24.5-s175",
|
| 4160 |
-
"text": "175 [Amendments]",
|
| 4161 |
-
"citation": "Cannabis Act, s. 175"
|
| 4162 |
-
},
|
| 4163 |
-
{
|
| 4164 |
-
"act_code": "C-24.5",
|
| 4165 |
-
"act_short": "Cannabis Act",
|
| 4166 |
-
"act_name": "Cannabis Act",
|
| 4167 |
-
"section": "176",
|
| 4168 |
-
"marginal_note": "",
|
| 4169 |
-
"part": "PART 12 - Transitional Provisions and Related, Consequential and Coordinating Amendments",
|
| 4170 |
-
"division": "",
|
| 4171 |
-
"heading": "Seized Property Management Act",
|
| 4172 |
-
"history": "",
|
| 4173 |
-
"last_amended": "2018-10-17",
|
| 4174 |
-
"in_force": "2018-10-17",
|
| 4175 |
-
"status": "in force",
|
| 4176 |
-
"current_to": "2026-03-31",
|
| 4177 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-176.html",
|
| 4178 |
-
"id": "C-24.5-s176",
|
| 4179 |
-
"text": "176 [Amendment]",
|
| 4180 |
-
"citation": "Cannabis Act, s. 176"
|
| 4181 |
-
},
|
| 4182 |
-
{
|
| 4183 |
-
"act_code": "C-24.5",
|
| 4184 |
-
"act_short": "Cannabis Act",
|
| 4185 |
-
"act_name": "Cannabis Act",
|
| 4186 |
-
"section": "177",
|
| 4187 |
-
"marginal_note": "",
|
| 4188 |
-
"part": "PART 12 - Transitional Provisions and Related, Consequential and Coordinating Amendments",
|
| 4189 |
-
"division": "",
|
| 4190 |
-
"heading": "Seized Property Management Act",
|
| 4191 |
-
"history": "",
|
| 4192 |
-
"last_amended": "2018-10-17",
|
| 4193 |
-
"in_force": "2018-10-17",
|
| 4194 |
-
"status": "in force",
|
| 4195 |
-
"current_to": "2026-03-31",
|
| 4196 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-177.html",
|
| 4197 |
-
"id": "C-24.5-s177",
|
| 4198 |
-
"text": "177 [Amendment]",
|
| 4199 |
-
"citation": "Cannabis Act, s. 177"
|
| 4200 |
-
},
|
| 4201 |
-
{
|
| 4202 |
-
"act_code": "C-24.5",
|
| 4203 |
-
"act_short": "Cannabis Act",
|
| 4204 |
-
"act_name": "Cannabis Act",
|
| 4205 |
-
"section": "178",
|
| 4206 |
-
"marginal_note": "",
|
| 4207 |
-
"part": "PART 12 - Transitional Provisions and Related, Consequential and Coordinating Amendments",
|
| 4208 |
-
"division": "",
|
| 4209 |
-
"heading": "Seized Property Management Act",
|
| 4210 |
-
"history": "",
|
| 4211 |
-
"last_amended": "2018-10-17",
|
| 4212 |
-
"in_force": "2018-10-17",
|
| 4213 |
-
"status": "in force",
|
| 4214 |
-
"current_to": "2026-03-31",
|
| 4215 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-178.html",
|
| 4216 |
-
"id": "C-24.5-s178",
|
| 4217 |
-
"text": "178 [Amendment]",
|
| 4218 |
-
"citation": "Cannabis Act, s. 178"
|
| 4219 |
-
},
|
| 4220 |
-
{
|
| 4221 |
-
"act_code": "C-24.5",
|
| 4222 |
-
"act_short": "Cannabis Act",
|
| 4223 |
-
"act_name": "Cannabis Act",
|
| 4224 |
-
"section": "179",
|
| 4225 |
-
"marginal_note": "",
|
| 4226 |
-
"part": "PART 12 - Transitional Provisions and Related, Consequential and Coordinating Amendments",
|
| 4227 |
-
"division": "",
|
| 4228 |
-
"heading": "Seized Property Management Act",
|
| 4229 |
-
"history": "",
|
| 4230 |
-
"last_amended": "2018-10-17",
|
| 4231 |
-
"in_force": "2018-10-17",
|
| 4232 |
-
"status": "in force",
|
| 4233 |
-
"current_to": "2026-03-31",
|
| 4234 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-179.html",
|
| 4235 |
-
"id": "C-24.5-s179",
|
| 4236 |
-
"text": "179 [Amendment]",
|
| 4237 |
-
"citation": "Cannabis Act, s. 179"
|
| 4238 |
-
},
|
| 4239 |
-
{
|
| 4240 |
-
"act_code": "C-24.5",
|
| 4241 |
-
"act_short": "Cannabis Act",
|
| 4242 |
-
"act_name": "Cannabis Act",
|
| 4243 |
-
"section": "180",
|
| 4244 |
-
"marginal_note": "",
|
| 4245 |
-
"part": "PART 12 - Transitional Provisions and Related, Consequential and Coordinating Amendments",
|
| 4246 |
-
"division": "",
|
| 4247 |
-
"heading": "Seized Property Management Act",
|
| 4248 |
-
"history": "",
|
| 4249 |
-
"last_amended": "2018-10-17",
|
| 4250 |
-
"in_force": "2018-10-17",
|
| 4251 |
-
"status": "in force",
|
| 4252 |
-
"current_to": "2026-03-31",
|
| 4253 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-180.html",
|
| 4254 |
-
"id": "C-24.5-s180",
|
| 4255 |
-
"text": "180 [Amendment]",
|
| 4256 |
-
"citation": "Cannabis Act, s. 180"
|
| 4257 |
-
},
|
| 4258 |
-
{
|
| 4259 |
-
"act_code": "C-24.5",
|
| 4260 |
-
"act_short": "Cannabis Act",
|
| 4261 |
-
"act_name": "Cannabis Act",
|
| 4262 |
-
"section": "181",
|
| 4263 |
-
"marginal_note": "",
|
| 4264 |
-
"part": "PART 12 - Transitional Provisions and Related, Consequential and Coordinating Amendments",
|
| 4265 |
-
"division": "",
|
| 4266 |
-
"heading": "Seized Property Management Act",
|
| 4267 |
-
"history": "",
|
| 4268 |
-
"last_amended": "2018-10-17",
|
| 4269 |
-
"in_force": "2018-10-17",
|
| 4270 |
-
"status": "in force",
|
| 4271 |
-
"current_to": "2026-03-31",
|
| 4272 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-181.html",
|
| 4273 |
-
"id": "C-24.5-s181",
|
| 4274 |
-
"text": "181 [Amendment]",
|
| 4275 |
-
"citation": "Cannabis Act, s. 181"
|
| 4276 |
-
},
|
| 4277 |
-
{
|
| 4278 |
-
"act_code": "C-24.5",
|
| 4279 |
-
"act_short": "Cannabis Act",
|
| 4280 |
-
"act_name": "Cannabis Act",
|
| 4281 |
-
"section": "182",
|
| 4282 |
-
"marginal_note": "",
|
| 4283 |
-
"part": "PART 12 - Transitional Provisions and Related, Consequential and Coordinating Amendments",
|
| 4284 |
-
"division": "",
|
| 4285 |
-
"heading": "Firearms Act",
|
| 4286 |
-
"history": "",
|
| 4287 |
-
"last_amended": "2018-10-17",
|
| 4288 |
-
"in_force": "2018-10-17",
|
| 4289 |
-
"status": "in force",
|
| 4290 |
-
"current_to": "2026-03-31",
|
| 4291 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-182.html",
|
| 4292 |
-
"id": "C-24.5-s182",
|
| 4293 |
-
"text": "182 [Amendment]",
|
| 4294 |
-
"citation": "Cannabis Act, s. 182"
|
| 4295 |
-
},
|
| 4296 |
-
{
|
| 4297 |
-
"act_code": "C-24.5",
|
| 4298 |
-
"act_short": "Cannabis Act",
|
| 4299 |
-
"act_name": "Cannabis Act",
|
| 4300 |
-
"section": "183",
|
| 4301 |
-
"marginal_note": "",
|
| 4302 |
-
"part": "PART 12 - Transitional Provisions and Related, Consequential and Coordinating Amendments",
|
| 4303 |
-
"division": "",
|
| 4304 |
-
"heading": "Proceeds of Crime (Money Laundering) and Terrorist Financing Act",
|
| 4305 |
-
"history": "",
|
| 4306 |
-
"last_amended": "2018-10-17",
|
| 4307 |
-
"in_force": "2018-10-17",
|
| 4308 |
-
"status": "in force",
|
| 4309 |
-
"current_to": "2026-03-31",
|
| 4310 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-183.html",
|
| 4311 |
-
"id": "C-24.5-s183",
|
| 4312 |
-
"text": "183 [Amendment]",
|
| 4313 |
-
"citation": "Cannabis Act, s. 183"
|
| 4314 |
-
},
|
| 4315 |
-
{
|
| 4316 |
-
"act_code": "C-24.5",
|
| 4317 |
-
"act_short": "Cannabis Act",
|
| 4318 |
-
"act_name": "Cannabis Act",
|
| 4319 |
-
"section": "184",
|
| 4320 |
-
"marginal_note": "",
|
| 4321 |
-
"part": "PART 12 - Transitional Provisions and Related, Consequential and Coordinating Amendments",
|
| 4322 |
-
"division": "",
|
| 4323 |
-
"heading": "Youth Criminal Justice Act",
|
| 4324 |
-
"history": "",
|
| 4325 |
-
"last_amended": "2018-10-17",
|
| 4326 |
-
"in_force": "2018-10-17",
|
| 4327 |
-
"status": "in force",
|
| 4328 |
-
"current_to": "2026-03-31",
|
| 4329 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-184.html",
|
| 4330 |
-
"id": "C-24.5-s184",
|
| 4331 |
-
"text": "184 [Amendment]",
|
| 4332 |
-
"citation": "Cannabis Act, s. 184"
|
| 4333 |
-
},
|
| 4334 |
-
{
|
| 4335 |
-
"act_code": "C-24.5",
|
| 4336 |
-
"act_short": "Cannabis Act",
|
| 4337 |
-
"act_name": "Cannabis Act",
|
| 4338 |
-
"section": "185",
|
| 4339 |
-
"marginal_note": "",
|
| 4340 |
-
"part": "PART 12 - Transitional Provisions and Related, Consequential and Coordinating Amendments",
|
| 4341 |
-
"division": "",
|
| 4342 |
-
"heading": "International Interests in Mobile Equipment (aircraft equipment) Act",
|
| 4343 |
-
"history": "",
|
| 4344 |
-
"last_amended": "2018-10-17",
|
| 4345 |
-
"in_force": "2018-10-17",
|
| 4346 |
-
"status": "in force",
|
| 4347 |
-
"current_to": "2026-03-31",
|
| 4348 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-185.html",
|
| 4349 |
-
"id": "C-24.5-s185",
|
| 4350 |
-
"text": "185 [Amendment]",
|
| 4351 |
-
"citation": "Cannabis Act, s. 185"
|
| 4352 |
-
},
|
| 4353 |
-
{
|
| 4354 |
-
"act_code": "C-24.5",
|
| 4355 |
-
"act_short": "Cannabis Act",
|
| 4356 |
-
"act_name": "Cannabis Act",
|
| 4357 |
-
"section": "186",
|
| 4358 |
-
"marginal_note": "",
|
| 4359 |
-
"part": "PART 12 - Transitional Provisions and Related, Consequential and Coordinating Amendments",
|
| 4360 |
-
"division": "",
|
| 4361 |
-
"heading": "Canada Consumer Product Safety Act",
|
| 4362 |
-
"history": "",
|
| 4363 |
-
"last_amended": "2018-10-17",
|
| 4364 |
-
"in_force": "2018-10-17",
|
| 4365 |
-
"status": "in force",
|
| 4366 |
-
"current_to": "2026-03-31",
|
| 4367 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-186.html",
|
| 4368 |
-
"id": "C-24.5-s186",
|
| 4369 |
-
"text": "186 [Amendment]",
|
| 4370 |
-
"citation": "Cannabis Act, s. 186"
|
| 4371 |
-
},
|
| 4372 |
-
{
|
| 4373 |
-
"act_code": "C-24.5",
|
| 4374 |
-
"act_short": "Cannabis Act",
|
| 4375 |
-
"act_name": "Cannabis Act",
|
| 4376 |
-
"section": "187",
|
| 4377 |
-
"marginal_note": "",
|
| 4378 |
-
"part": "PART 12 - Transitional Provisions and Related, Consequential and Coordinating Amendments",
|
| 4379 |
-
"division": "",
|
| 4380 |
-
"heading": "Canadian Victims Bill of Rights",
|
| 4381 |
-
"history": "",
|
| 4382 |
-
"last_amended": "2018-10-17",
|
| 4383 |
-
"in_force": "2018-10-17",
|
| 4384 |
-
"status": "in force",
|
| 4385 |
-
"current_to": "2026-03-31",
|
| 4386 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-187.html",
|
| 4387 |
-
"id": "C-24.5-s187",
|
| 4388 |
-
"text": "187 [Amendment]",
|
| 4389 |
-
"citation": "Cannabis Act, s. 187"
|
| 4390 |
-
},
|
| 4391 |
-
{
|
| 4392 |
-
"act_code": "C-24.5",
|
| 4393 |
-
"act_short": "Cannabis Act",
|
| 4394 |
-
"act_name": "Cannabis Act",
|
| 4395 |
-
"section": "188",
|
| 4396 |
-
"marginal_note": "",
|
| 4397 |
-
"part": "PART 12 - Transitional Provisions and Related, Consequential and Coordinating Amendments",
|
| 4398 |
-
"division": "",
|
| 4399 |
-
"heading": "Coordinating Amendments",
|
| 4400 |
-
"history": "",
|
| 4401 |
-
"last_amended": "2018-06-21",
|
| 4402 |
-
"in_force": "2018-06-21",
|
| 4403 |
-
"status": "in force",
|
| 4404 |
-
"current_to": "2026-03-31",
|
| 4405 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-188.html",
|
| 4406 |
-
"id": "C-24.5-s188",
|
| 4407 |
-
"text": "188 [Amendments]",
|
| 4408 |
-
"citation": "Cannabis Act, s. 188"
|
| 4409 |
-
},
|
| 4410 |
-
{
|
| 4411 |
-
"act_code": "C-24.5",
|
| 4412 |
-
"act_short": "Cannabis Act",
|
| 4413 |
-
"act_name": "Cannabis Act",
|
| 4414 |
-
"section": "189",
|
| 4415 |
-
"marginal_note": "",
|
| 4416 |
-
"part": "PART 12 - Transitional Provisions and Related, Consequential and Coordinating Amendments",
|
| 4417 |
-
"division": "",
|
| 4418 |
-
"heading": "Coordinating Amendments",
|
| 4419 |
-
"history": "",
|
| 4420 |
-
"last_amended": "2018-06-21",
|
| 4421 |
-
"in_force": "2018-06-21",
|
| 4422 |
-
"status": "in force",
|
| 4423 |
-
"current_to": "2026-03-31",
|
| 4424 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-189.html",
|
| 4425 |
-
"id": "C-24.5-s189",
|
| 4426 |
-
"text": "189 [Amendments]",
|
| 4427 |
-
"citation": "Cannabis Act, s. 189"
|
| 4428 |
-
},
|
| 4429 |
-
{
|
| 4430 |
-
"act_code": "C-24.5",
|
| 4431 |
-
"act_short": "Cannabis Act",
|
| 4432 |
-
"act_name": "Cannabis Act",
|
| 4433 |
-
"section": "190",
|
| 4434 |
-
"marginal_note": "",
|
| 4435 |
-
"part": "PART 12 - Transitional Provisions and Related, Consequential and Coordinating Amendments",
|
| 4436 |
-
"division": "",
|
| 4437 |
-
"heading": "Coordinating Amendments",
|
| 4438 |
-
"history": "",
|
| 4439 |
-
"last_amended": "2018-06-21",
|
| 4440 |
-
"in_force": "2018-06-21",
|
| 4441 |
-
"status": "in force",
|
| 4442 |
-
"current_to": "2026-03-31",
|
| 4443 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-190.html",
|
| 4444 |
-
"id": "C-24.5-s190",
|
| 4445 |
-
"text": "190 [Amendment]",
|
| 4446 |
-
"citation": "Cannabis Act, s. 190"
|
| 4447 |
-
},
|
| 4448 |
-
{
|
| 4449 |
-
"act_code": "C-24.5",
|
| 4450 |
-
"act_short": "Cannabis Act",
|
| 4451 |
-
"act_name": "Cannabis Act",
|
| 4452 |
-
"section": "191",
|
| 4453 |
-
"marginal_note": "",
|
| 4454 |
-
"part": "PART 12 - Transitional Provisions and Related, Consequential and Coordinating Amendments",
|
| 4455 |
-
"division": "",
|
| 4456 |
-
"heading": "Coordinating Amendments",
|
| 4457 |
-
"history": "",
|
| 4458 |
-
"last_amended": "2018-06-21",
|
| 4459 |
-
"in_force": "2018-06-21",
|
| 4460 |
-
"status": "in force",
|
| 4461 |
-
"current_to": "2026-03-31",
|
| 4462 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-191.html",
|
| 4463 |
-
"id": "C-24.5-s191",
|
| 4464 |
-
"text": "191 [Amendments]",
|
| 4465 |
-
"citation": "Cannabis Act, s. 191"
|
| 4466 |
-
},
|
| 4467 |
-
{
|
| 4468 |
-
"act_code": "C-24.5",
|
| 4469 |
-
"act_short": "Cannabis Act",
|
| 4470 |
-
"act_name": "Cannabis Act",
|
| 4471 |
-
"section": "192",
|
| 4472 |
-
"marginal_note": "",
|
| 4473 |
-
"part": "PART 12 - Transitional Provisions and Related, Consequential and Coordinating Amendments",
|
| 4474 |
-
"division": "",
|
| 4475 |
-
"heading": "Coordinating Amendments",
|
| 4476 |
-
"history": "",
|
| 4477 |
-
"last_amended": "2018-06-21",
|
| 4478 |
-
"in_force": "2018-06-21",
|
| 4479 |
-
"status": "in force",
|
| 4480 |
-
"current_to": "2026-03-31",
|
| 4481 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-192.html",
|
| 4482 |
-
"id": "C-24.5-s192",
|
| 4483 |
-
"text": "192 [Amendment]",
|
| 4484 |
-
"citation": "Cannabis Act, s. 192"
|
| 4485 |
-
},
|
| 4486 |
-
{
|
| 4487 |
-
"act_code": "C-24.5",
|
| 4488 |
-
"act_short": "Cannabis Act",
|
| 4489 |
-
"act_name": "Cannabis Act",
|
| 4490 |
-
"section": "193",
|
| 4491 |
-
"marginal_note": "",
|
| 4492 |
-
"part": "PART 12 - Transitional Provisions and Related, Consequential and Coordinating Amendments",
|
| 4493 |
-
"division": "",
|
| 4494 |
-
"heading": "Coordinating Amendments",
|
| 4495 |
-
"history": "",
|
| 4496 |
-
"last_amended": "2018-06-21",
|
| 4497 |
-
"in_force": "2018-06-21",
|
| 4498 |
-
"status": "in force",
|
| 4499 |
-
"current_to": "2026-03-31",
|
| 4500 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-193.html",
|
| 4501 |
-
"id": "C-24.5-s193",
|
| 4502 |
-
"text": "193 [Amendment]",
|
| 4503 |
-
"citation": "Cannabis Act, s. 193"
|
| 4504 |
-
},
|
| 4505 |
-
{
|
| 4506 |
-
"act_code": "C-24.5",
|
| 4507 |
-
"act_short": "Cannabis Act",
|
| 4508 |
-
"act_name": "Cannabis Act",
|
| 4509 |
-
"section": "193.1",
|
| 4510 |
-
"marginal_note": "",
|
| 4511 |
-
"part": "PART 12.1 - Cannabis Act",
|
| 4512 |
-
"division": "",
|
| 4513 |
-
"heading": "PART 12.1 - Cannabis Act",
|
| 4514 |
-
"history": "",
|
| 4515 |
-
"last_amended": "2019-10-17",
|
| 4516 |
-
"in_force": "2019-10-17",
|
| 4517 |
-
"status": "in force",
|
| 4518 |
-
"current_to": "2026-03-31",
|
| 4519 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-193.1.html",
|
| 4520 |
-
"id": "C-24.5-s193.1",
|
| 4521 |
-
"text": "193.1 [Amendment]",
|
| 4522 |
-
"citation": "Cannabis Act, s. 193.1"
|
| 4523 |
-
},
|
| 4524 |
-
{
|
| 4525 |
-
"act_code": "C-24.5",
|
| 4526 |
-
"act_short": "Cannabis Act",
|
| 4527 |
-
"act_name": "Cannabis Act",
|
| 4528 |
-
"section": "194",
|
| 4529 |
-
"marginal_note": "",
|
| 4530 |
-
"part": "PART 13 - Controlled Drugs and Substances Act",
|
| 4531 |
-
"division": "",
|
| 4532 |
-
"heading": "Amendments to the Act",
|
| 4533 |
-
"history": "",
|
| 4534 |
-
"last_amended": "2018-06-21",
|
| 4535 |
-
"in_force": "2018-06-21",
|
| 4536 |
-
"status": "in force",
|
| 4537 |
-
"current_to": "2026-03-31",
|
| 4538 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-194.html",
|
| 4539 |
-
"id": "C-24.5-s194",
|
| 4540 |
-
"text": "194 [Amendment]",
|
| 4541 |
-
"citation": "Cannabis Act, s. 194"
|
| 4542 |
-
},
|
| 4543 |
-
{
|
| 4544 |
-
"act_code": "C-24.5",
|
| 4545 |
-
"act_short": "Cannabis Act",
|
| 4546 |
-
"act_name": "Cannabis Act",
|
| 4547 |
-
"section": "195",
|
| 4548 |
-
"marginal_note": "",
|
| 4549 |
-
"part": "PART 13 - Controlled Drugs and Substances Act",
|
| 4550 |
-
"division": "",
|
| 4551 |
-
"heading": "Amendments to the Act",
|
| 4552 |
-
"history": "",
|
| 4553 |
-
"last_amended": "2018-10-17",
|
| 4554 |
-
"in_force": "2018-10-17",
|
| 4555 |
-
"status": "in force",
|
| 4556 |
-
"current_to": "2026-03-31",
|
| 4557 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-195.html",
|
| 4558 |
-
"id": "C-24.5-s195",
|
| 4559 |
-
"text": "195 [Amendments]",
|
| 4560 |
-
"citation": "Cannabis Act, s. 195"
|
| 4561 |
-
},
|
| 4562 |
-
{
|
| 4563 |
-
"act_code": "C-24.5",
|
| 4564 |
-
"act_short": "Cannabis Act",
|
| 4565 |
-
"act_name": "Cannabis Act",
|
| 4566 |
-
"section": "195.1",
|
| 4567 |
-
"marginal_note": "",
|
| 4568 |
-
"part": "PART 13 - Controlled Drugs and Substances Act",
|
| 4569 |
-
"division": "",
|
| 4570 |
-
"heading": "Amendments to the Act",
|
| 4571 |
-
"history": "",
|
| 4572 |
-
"last_amended": "2018-10-17",
|
| 4573 |
-
"in_force": "2018-10-17",
|
| 4574 |
-
"status": "in force",
|
| 4575 |
-
"current_to": "2026-03-31",
|
| 4576 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-195.1.html",
|
| 4577 |
-
"id": "C-24.5-s195.1",
|
| 4578 |
-
"text": "195.1 [Amendment]",
|
| 4579 |
-
"citation": "Cannabis Act, s. 195.1"
|
| 4580 |
-
},
|
| 4581 |
-
{
|
| 4582 |
-
"act_code": "C-24.5",
|
| 4583 |
-
"act_short": "Cannabis Act",
|
| 4584 |
-
"act_name": "Cannabis Act",
|
| 4585 |
-
"section": "196",
|
| 4586 |
-
"marginal_note": "",
|
| 4587 |
-
"part": "PART 13 - Controlled Drugs and Substances Act",
|
| 4588 |
-
"division": "",
|
| 4589 |
-
"heading": "Amendments to the Act",
|
| 4590 |
-
"history": "",
|
| 4591 |
-
"last_amended": "2018-10-17",
|
| 4592 |
-
"in_force": "2018-10-17",
|
| 4593 |
-
"status": "in force",
|
| 4594 |
-
"current_to": "2026-03-31",
|
| 4595 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-196.html",
|
| 4596 |
-
"id": "C-24.5-s196",
|
| 4597 |
-
"text": "196 [Amendments]",
|
| 4598 |
-
"citation": "Cannabis Act, s. 196"
|
| 4599 |
-
},
|
| 4600 |
-
{
|
| 4601 |
-
"act_code": "C-24.5",
|
| 4602 |
-
"act_short": "Cannabis Act",
|
| 4603 |
-
"act_name": "Cannabis Act",
|
| 4604 |
-
"section": "197",
|
| 4605 |
-
"marginal_note": "",
|
| 4606 |
-
"part": "PART 13 - Controlled Drugs and Substances Act",
|
| 4607 |
-
"division": "",
|
| 4608 |
-
"heading": "Amendments to the Act",
|
| 4609 |
-
"history": "",
|
| 4610 |
-
"last_amended": "2018-10-17",
|
| 4611 |
-
"in_force": "2018-10-17",
|
| 4612 |
-
"status": "in force",
|
| 4613 |
-
"current_to": "2026-03-31",
|
| 4614 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-197.html",
|
| 4615 |
-
"id": "C-24.5-s197",
|
| 4616 |
-
"text": "197 [Amendments]",
|
| 4617 |
-
"citation": "Cannabis Act, s. 197"
|
| 4618 |
-
},
|
| 4619 |
-
{
|
| 4620 |
-
"act_code": "C-24.5",
|
| 4621 |
-
"act_short": "Cannabis Act",
|
| 4622 |
-
"act_name": "Cannabis Act",
|
| 4623 |
-
"section": "198",
|
| 4624 |
-
"marginal_note": "",
|
| 4625 |
-
"part": "PART 13 - Controlled Drugs and Substances Act",
|
| 4626 |
-
"division": "",
|
| 4627 |
-
"heading": "Amendments to the Act",
|
| 4628 |
-
"history": "",
|
| 4629 |
-
"last_amended": "2018-10-17",
|
| 4630 |
-
"in_force": "2018-10-17",
|
| 4631 |
-
"status": "in force",
|
| 4632 |
-
"current_to": "2026-03-31",
|
| 4633 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-198.html",
|
| 4634 |
-
"id": "C-24.5-s198",
|
| 4635 |
-
"text": "198 [Amendment]",
|
| 4636 |
-
"citation": "Cannabis Act, s. 198"
|
| 4637 |
-
},
|
| 4638 |
-
{
|
| 4639 |
-
"act_code": "C-24.5",
|
| 4640 |
-
"act_short": "Cannabis Act",
|
| 4641 |
-
"act_name": "Cannabis Act",
|
| 4642 |
-
"section": "199",
|
| 4643 |
-
"marginal_note": "",
|
| 4644 |
-
"part": "PART 13 - Controlled Drugs and Substances Act",
|
| 4645 |
-
"division": "",
|
| 4646 |
-
"heading": "Amendments to the Act",
|
| 4647 |
-
"history": "",
|
| 4648 |
-
"last_amended": "2018-06-21",
|
| 4649 |
-
"in_force": "2018-06-21",
|
| 4650 |
-
"status": "in force",
|
| 4651 |
-
"current_to": "2026-03-31",
|
| 4652 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-199.html",
|
| 4653 |
-
"id": "C-24.5-s199",
|
| 4654 |
-
"text": "199 [Amendment]",
|
| 4655 |
-
"citation": "Cannabis Act, s. 199"
|
| 4656 |
-
},
|
| 4657 |
-
{
|
| 4658 |
-
"act_code": "C-24.5",
|
| 4659 |
-
"act_short": "Cannabis Act",
|
| 4660 |
-
"act_name": "Cannabis Act",
|
| 4661 |
-
"section": "200",
|
| 4662 |
-
"marginal_note": "",
|
| 4663 |
-
"part": "PART 13 - Controlled Drugs and Substances Act",
|
| 4664 |
-
"division": "",
|
| 4665 |
-
"heading": "Amendments to the Act",
|
| 4666 |
-
"history": "",
|
| 4667 |
-
"last_amended": "2018-06-21",
|
| 4668 |
-
"in_force": "2018-06-21",
|
| 4669 |
-
"status": "in force",
|
| 4670 |
-
"current_to": "2026-03-31",
|
| 4671 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-200.html",
|
| 4672 |
-
"id": "C-24.5-s200",
|
| 4673 |
-
"text": "200 [Amendment]",
|
| 4674 |
-
"citation": "Cannabis Act, s. 200"
|
| 4675 |
-
},
|
| 4676 |
-
{
|
| 4677 |
-
"act_code": "C-24.5",
|
| 4678 |
-
"act_short": "Cannabis Act",
|
| 4679 |
-
"act_name": "Cannabis Act",
|
| 4680 |
-
"section": "201",
|
| 4681 |
-
"marginal_note": "",
|
| 4682 |
-
"part": "PART 13 - Controlled Drugs and Substances Act",
|
| 4683 |
-
"division": "",
|
| 4684 |
-
"heading": "Amendments to the Act",
|
| 4685 |
-
"history": "",
|
| 4686 |
-
"last_amended": "2018-06-21",
|
| 4687 |
-
"in_force": "2018-06-21",
|
| 4688 |
-
"status": "in force",
|
| 4689 |
-
"current_to": "2026-03-31",
|
| 4690 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-201.html",
|
| 4691 |
-
"id": "C-24.5-s201",
|
| 4692 |
-
"text": "201 [Amendment]",
|
| 4693 |
-
"citation": "Cannabis Act, s. 201"
|
| 4694 |
-
},
|
| 4695 |
-
{
|
| 4696 |
-
"act_code": "C-24.5",
|
| 4697 |
-
"act_short": "Cannabis Act",
|
| 4698 |
-
"act_name": "Cannabis Act",
|
| 4699 |
-
"section": "202",
|
| 4700 |
-
"marginal_note": "",
|
| 4701 |
-
"part": "PART 13 - Controlled Drugs and Substances Act",
|
| 4702 |
-
"division": "",
|
| 4703 |
-
"heading": "Amendments to the Act",
|
| 4704 |
-
"history": "",
|
| 4705 |
-
"last_amended": "2018-06-21",
|
| 4706 |
-
"in_force": "2018-06-21",
|
| 4707 |
-
"status": "in force",
|
| 4708 |
-
"current_to": "2026-03-31",
|
| 4709 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-202.html",
|
| 4710 |
-
"id": "C-24.5-s202",
|
| 4711 |
-
"text": "202 [Amendment]",
|
| 4712 |
-
"citation": "Cannabis Act, s. 202"
|
| 4713 |
-
},
|
| 4714 |
-
{
|
| 4715 |
-
"act_code": "C-24.5",
|
| 4716 |
-
"act_short": "Cannabis Act",
|
| 4717 |
-
"act_name": "Cannabis Act",
|
| 4718 |
-
"section": "203",
|
| 4719 |
-
"marginal_note": "",
|
| 4720 |
-
"part": "PART 13 - Controlled Drugs and Substances Act",
|
| 4721 |
-
"division": "",
|
| 4722 |
-
"heading": "Amendments to the Act",
|
| 4723 |
-
"history": "",
|
| 4724 |
-
"last_amended": "2018-10-17",
|
| 4725 |
-
"in_force": "2018-10-17",
|
| 4726 |
-
"status": "in force",
|
| 4727 |
-
"current_to": "2026-03-31",
|
| 4728 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-203.html",
|
| 4729 |
-
"id": "C-24.5-s203",
|
| 4730 |
-
"text": "203 [Amendment]",
|
| 4731 |
-
"citation": "Cannabis Act, s. 203"
|
| 4732 |
-
},
|
| 4733 |
-
{
|
| 4734 |
-
"act_code": "C-24.5",
|
| 4735 |
-
"act_short": "Cannabis Act",
|
| 4736 |
-
"act_name": "Cannabis Act",
|
| 4737 |
-
"section": "204",
|
| 4738 |
-
"marginal_note": "",
|
| 4739 |
-
"part": "PART 13 - Controlled Drugs and Substances Act",
|
| 4740 |
-
"division": "",
|
| 4741 |
-
"heading": "Amendments to the Act",
|
| 4742 |
-
"history": "",
|
| 4743 |
-
"last_amended": "2018-10-17",
|
| 4744 |
-
"in_force": "2018-10-17",
|
| 4745 |
-
"status": "in force",
|
| 4746 |
-
"current_to": "2026-03-31",
|
| 4747 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-204.html",
|
| 4748 |
-
"id": "C-24.5-s204",
|
| 4749 |
-
"text": "204 [Amendments]",
|
| 4750 |
-
"citation": "Cannabis Act, s. 204"
|
| 4751 |
-
},
|
| 4752 |
-
{
|
| 4753 |
-
"act_code": "C-24.5",
|
| 4754 |
-
"act_short": "Cannabis Act",
|
| 4755 |
-
"act_name": "Cannabis Act",
|
| 4756 |
-
"section": "205",
|
| 4757 |
-
"marginal_note": "",
|
| 4758 |
-
"part": "PART 13 - Controlled Drugs and Substances Act",
|
| 4759 |
-
"division": "",
|
| 4760 |
-
"heading": "Amendments to the Act",
|
| 4761 |
-
"history": "",
|
| 4762 |
-
"last_amended": "2018-10-17",
|
| 4763 |
-
"in_force": "2018-10-17",
|
| 4764 |
-
"status": "in force",
|
| 4765 |
-
"current_to": "2026-03-31",
|
| 4766 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-205.html",
|
| 4767 |
-
"id": "C-24.5-s205",
|
| 4768 |
-
"text": "205 [Amendment]",
|
| 4769 |
-
"citation": "Cannabis Act, s. 205"
|
| 4770 |
-
},
|
| 4771 |
-
{
|
| 4772 |
-
"act_code": "C-24.5",
|
| 4773 |
-
"act_short": "Cannabis Act",
|
| 4774 |
-
"act_name": "Cannabis Act",
|
| 4775 |
-
"section": "206",
|
| 4776 |
-
"marginal_note": "",
|
| 4777 |
-
"part": "PART 13 - Controlled Drugs and Substances Act",
|
| 4778 |
-
"division": "",
|
| 4779 |
-
"heading": "Coordinating Amendments",
|
| 4780 |
-
"history": "",
|
| 4781 |
-
"last_amended": "2018-06-21",
|
| 4782 |
-
"in_force": "2018-06-21",
|
| 4783 |
-
"status": "in force",
|
| 4784 |
-
"current_to": "2026-03-31",
|
| 4785 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-206.html",
|
| 4786 |
-
"id": "C-24.5-s206",
|
| 4787 |
-
"text": "206 [Amendments]",
|
| 4788 |
-
"citation": "Cannabis Act, s. 206"
|
| 4789 |
-
},
|
| 4790 |
-
{
|
| 4791 |
-
"act_code": "C-24.5",
|
| 4792 |
-
"act_short": "Cannabis Act",
|
| 4793 |
-
"act_name": "Cannabis Act",
|
| 4794 |
-
"section": "207",
|
| 4795 |
-
"marginal_note": "",
|
| 4796 |
-
"part": "PART 14 - Criminal Code",
|
| 4797 |
-
"division": "",
|
| 4798 |
-
"heading": "Amendments to the Act",
|
| 4799 |
-
"history": "",
|
| 4800 |
-
"last_amended": "2018-10-17",
|
| 4801 |
-
"in_force": "2018-10-17",
|
| 4802 |
-
"status": "in force",
|
| 4803 |
-
"current_to": "2026-03-31",
|
| 4804 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-207.html",
|
| 4805 |
-
"id": "C-24.5-s207",
|
| 4806 |
-
"text": "207 [Amendment]",
|
| 4807 |
-
"citation": "Cannabis Act, s. 207"
|
| 4808 |
-
},
|
| 4809 |
-
{
|
| 4810 |
-
"act_code": "C-24.5",
|
| 4811 |
-
"act_short": "Cannabis Act",
|
| 4812 |
-
"act_name": "Cannabis Act",
|
| 4813 |
-
"section": "208",
|
| 4814 |
-
"marginal_note": "",
|
| 4815 |
-
"part": "PART 14 - Criminal Code",
|
| 4816 |
-
"division": "",
|
| 4817 |
-
"heading": "Amendments to the Act",
|
| 4818 |
-
"history": "",
|
| 4819 |
-
"last_amended": "2018-10-17",
|
| 4820 |
-
"in_force": "2018-10-17",
|
| 4821 |
-
"status": "in force",
|
| 4822 |
-
"current_to": "2026-03-31",
|
| 4823 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-208.html",
|
| 4824 |
-
"id": "C-24.5-s208",
|
| 4825 |
-
"text": "208 [Amendment]",
|
| 4826 |
-
"citation": "Cannabis Act, s. 208"
|
| 4827 |
-
},
|
| 4828 |
-
{
|
| 4829 |
-
"act_code": "C-24.5",
|
| 4830 |
-
"act_short": "Cannabis Act",
|
| 4831 |
-
"act_name": "Cannabis Act",
|
| 4832 |
-
"section": "209",
|
| 4833 |
-
"marginal_note": "",
|
| 4834 |
-
"part": "PART 14 - Criminal Code",
|
| 4835 |
-
"division": "",
|
| 4836 |
-
"heading": "Amendments to the Act",
|
| 4837 |
-
"history": "",
|
| 4838 |
-
"last_amended": "2018-10-17",
|
| 4839 |
-
"in_force": "2018-10-17",
|
| 4840 |
-
"status": "in force",
|
| 4841 |
-
"current_to": "2026-03-31",
|
| 4842 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-209.html",
|
| 4843 |
-
"id": "C-24.5-s209",
|
| 4844 |
-
"text": "209 [Amendment]",
|
| 4845 |
-
"citation": "Cannabis Act, s. 209"
|
| 4846 |
-
},
|
| 4847 |
-
{
|
| 4848 |
-
"act_code": "C-24.5",
|
| 4849 |
-
"act_short": "Cannabis Act",
|
| 4850 |
-
"act_name": "Cannabis Act",
|
| 4851 |
-
"section": "210",
|
| 4852 |
-
"marginal_note": "",
|
| 4853 |
-
"part": "PART 14 - Criminal Code",
|
| 4854 |
-
"division": "",
|
| 4855 |
-
"heading": "Amendments to the Act",
|
| 4856 |
-
"history": "",
|
| 4857 |
-
"last_amended": "2018-10-17",
|
| 4858 |
-
"in_force": "2018-10-17",
|
| 4859 |
-
"status": "in force",
|
| 4860 |
-
"current_to": "2026-03-31",
|
| 4861 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-210.html",
|
| 4862 |
-
"id": "C-24.5-s210",
|
| 4863 |
-
"text": "210 [Amendment]",
|
| 4864 |
-
"citation": "Cannabis Act, s. 210"
|
| 4865 |
-
},
|
| 4866 |
-
{
|
| 4867 |
-
"act_code": "C-24.5",
|
| 4868 |
-
"act_short": "Cannabis Act",
|
| 4869 |
-
"act_name": "Cannabis Act",
|
| 4870 |
-
"section": "211",
|
| 4871 |
-
"marginal_note": "",
|
| 4872 |
-
"part": "PART 14 - Criminal Code",
|
| 4873 |
-
"division": "",
|
| 4874 |
-
"heading": "Amendments to the Act",
|
| 4875 |
-
"history": "",
|
| 4876 |
-
"last_amended": "2018-10-17",
|
| 4877 |
-
"in_force": "2018-10-17",
|
| 4878 |
-
"status": "in force",
|
| 4879 |
-
"current_to": "2026-03-31",
|
| 4880 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-211.html",
|
| 4881 |
-
"id": "C-24.5-s211",
|
| 4882 |
-
"text": "211 [Amendment]",
|
| 4883 |
-
"citation": "Cannabis Act, s. 211"
|
| 4884 |
-
},
|
| 4885 |
-
{
|
| 4886 |
-
"act_code": "C-24.5",
|
| 4887 |
-
"act_short": "Cannabis Act",
|
| 4888 |
-
"act_name": "Cannabis Act",
|
| 4889 |
-
"section": "212",
|
| 4890 |
-
"marginal_note": "",
|
| 4891 |
-
"part": "PART 14 - Criminal Code",
|
| 4892 |
-
"division": "",
|
| 4893 |
-
"heading": "Amendments to the Act",
|
| 4894 |
-
"history": "",
|
| 4895 |
-
"last_amended": "2018-10-17",
|
| 4896 |
-
"in_force": "2018-10-17",
|
| 4897 |
-
"status": "in force",
|
| 4898 |
-
"current_to": "2026-03-31",
|
| 4899 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-212.html",
|
| 4900 |
-
"id": "C-24.5-s212",
|
| 4901 |
-
"text": "212 [Amendment]",
|
| 4902 |
-
"citation": "Cannabis Act, s. 212"
|
| 4903 |
-
},
|
| 4904 |
-
{
|
| 4905 |
-
"act_code": "C-24.5",
|
| 4906 |
-
"act_short": "Cannabis Act",
|
| 4907 |
-
"act_name": "Cannabis Act",
|
| 4908 |
-
"section": "213",
|
| 4909 |
-
"marginal_note": "",
|
| 4910 |
-
"part": "PART 14 - Criminal Code",
|
| 4911 |
-
"division": "",
|
| 4912 |
-
"heading": "Amendments to the Act",
|
| 4913 |
-
"history": "",
|
| 4914 |
-
"last_amended": "2018-10-17",
|
| 4915 |
-
"in_force": "2018-10-17",
|
| 4916 |
-
"status": "in force",
|
| 4917 |
-
"current_to": "2026-03-31",
|
| 4918 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-213.html",
|
| 4919 |
-
"id": "C-24.5-s213",
|
| 4920 |
-
"text": "213 [Amendment]",
|
| 4921 |
-
"citation": "Cannabis Act, s. 213"
|
| 4922 |
-
},
|
| 4923 |
-
{
|
| 4924 |
-
"act_code": "C-24.5",
|
| 4925 |
-
"act_short": "Cannabis Act",
|
| 4926 |
-
"act_name": "Cannabis Act",
|
| 4927 |
-
"section": "214",
|
| 4928 |
-
"marginal_note": "",
|
| 4929 |
-
"part": "PART 14 - Criminal Code",
|
| 4930 |
-
"division": "",
|
| 4931 |
-
"heading": "Amendments to the Act",
|
| 4932 |
-
"history": "",
|
| 4933 |
-
"last_amended": "2018-10-17",
|
| 4934 |
-
"in_force": "2018-10-17",
|
| 4935 |
-
"status": "in force",
|
| 4936 |
-
"current_to": "2026-03-31",
|
| 4937 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-214.html",
|
| 4938 |
-
"id": "C-24.5-s214",
|
| 4939 |
-
"text": "214 [Amendment]",
|
| 4940 |
-
"citation": "Cannabis Act, s. 214"
|
| 4941 |
-
},
|
| 4942 |
-
{
|
| 4943 |
-
"act_code": "C-24.5",
|
| 4944 |
-
"act_short": "Cannabis Act",
|
| 4945 |
-
"act_name": "Cannabis Act",
|
| 4946 |
-
"section": "215",
|
| 4947 |
-
"marginal_note": "",
|
| 4948 |
-
"part": "PART 14 - Criminal Code",
|
| 4949 |
-
"division": "",
|
| 4950 |
-
"heading": "Amendments to the Act",
|
| 4951 |
-
"history": "",
|
| 4952 |
-
"last_amended": "2018-10-17",
|
| 4953 |
-
"in_force": "2018-10-17",
|
| 4954 |
-
"status": "in force",
|
| 4955 |
-
"current_to": "2026-03-31",
|
| 4956 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-215.html",
|
| 4957 |
-
"id": "C-24.5-s215",
|
| 4958 |
-
"text": "215 [Amendment]",
|
| 4959 |
-
"citation": "Cannabis Act, s. 215"
|
| 4960 |
-
},
|
| 4961 |
-
{
|
| 4962 |
-
"act_code": "C-24.5",
|
| 4963 |
-
"act_short": "Cannabis Act",
|
| 4964 |
-
"act_name": "Cannabis Act",
|
| 4965 |
-
"section": "216",
|
| 4966 |
-
"marginal_note": "",
|
| 4967 |
-
"part": "PART 14 - Criminal Code",
|
| 4968 |
-
"division": "",
|
| 4969 |
-
"heading": "Amendments to the Act",
|
| 4970 |
-
"history": "",
|
| 4971 |
-
"last_amended": "2018-10-17",
|
| 4972 |
-
"in_force": "2018-10-17",
|
| 4973 |
-
"status": "in force",
|
| 4974 |
-
"current_to": "2026-03-31",
|
| 4975 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-216.html",
|
| 4976 |
-
"id": "C-24.5-s216",
|
| 4977 |
-
"text": "216 [Amendment]",
|
| 4978 |
-
"citation": "Cannabis Act, s. 216"
|
| 4979 |
-
},
|
| 4980 |
-
{
|
| 4981 |
-
"act_code": "C-24.5",
|
| 4982 |
-
"act_short": "Cannabis Act",
|
| 4983 |
-
"act_name": "Cannabis Act",
|
| 4984 |
-
"section": "217",
|
| 4985 |
-
"marginal_note": "",
|
| 4986 |
-
"part": "PART 14 - Criminal Code",
|
| 4987 |
-
"division": "",
|
| 4988 |
-
"heading": "Amendments to the Act",
|
| 4989 |
-
"history": "",
|
| 4990 |
-
"last_amended": "2018-10-17",
|
| 4991 |
-
"in_force": "2018-10-17",
|
| 4992 |
-
"status": "in force",
|
| 4993 |
-
"current_to": "2026-03-31",
|
| 4994 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-217.html",
|
| 4995 |
-
"id": "C-24.5-s217",
|
| 4996 |
-
"text": "217 [Amendment]",
|
| 4997 |
-
"citation": "Cannabis Act, s. 217"
|
| 4998 |
-
},
|
| 4999 |
-
{
|
| 5000 |
-
"act_code": "C-24.5",
|
| 5001 |
-
"act_short": "Cannabis Act",
|
| 5002 |
-
"act_name": "Cannabis Act",
|
| 5003 |
-
"section": "218",
|
| 5004 |
-
"marginal_note": "",
|
| 5005 |
-
"part": "PART 14 - Criminal Code",
|
| 5006 |
-
"division": "",
|
| 5007 |
-
"heading": "Amendments to the Act",
|
| 5008 |
-
"history": "",
|
| 5009 |
-
"last_amended": "2018-10-17",
|
| 5010 |
-
"in_force": "2018-10-17",
|
| 5011 |
-
"status": "in force",
|
| 5012 |
-
"current_to": "2026-03-31",
|
| 5013 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-218.html",
|
| 5014 |
-
"id": "C-24.5-s218",
|
| 5015 |
-
"text": "218 [Amendment]",
|
| 5016 |
-
"citation": "Cannabis Act, s. 218"
|
| 5017 |
-
},
|
| 5018 |
-
{
|
| 5019 |
-
"act_code": "C-24.5",
|
| 5020 |
-
"act_short": "Cannabis Act",
|
| 5021 |
-
"act_name": "Cannabis Act",
|
| 5022 |
-
"section": "219",
|
| 5023 |
-
"marginal_note": "",
|
| 5024 |
-
"part": "PART 14 - Criminal Code",
|
| 5025 |
-
"division": "",
|
| 5026 |
-
"heading": "Amendments to the Act",
|
| 5027 |
-
"history": "",
|
| 5028 |
-
"last_amended": "2018-10-17",
|
| 5029 |
-
"in_force": "2018-10-17",
|
| 5030 |
-
"status": "in force",
|
| 5031 |
-
"current_to": "2026-03-31",
|
| 5032 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-219.html",
|
| 5033 |
-
"id": "C-24.5-s219",
|
| 5034 |
-
"text": "219 [Amendment]",
|
| 5035 |
-
"citation": "Cannabis Act, s. 219"
|
| 5036 |
-
},
|
| 5037 |
-
{
|
| 5038 |
-
"act_code": "C-24.5",
|
| 5039 |
-
"act_short": "Cannabis Act",
|
| 5040 |
-
"act_name": "Cannabis Act",
|
| 5041 |
-
"section": "220",
|
| 5042 |
-
"marginal_note": "",
|
| 5043 |
-
"part": "PART 14 - Criminal Code",
|
| 5044 |
-
"division": "",
|
| 5045 |
-
"heading": "Amendments to the Act",
|
| 5046 |
-
"history": "",
|
| 5047 |
-
"last_amended": "2018-10-17",
|
| 5048 |
-
"in_force": "2018-10-17",
|
| 5049 |
-
"status": "in force",
|
| 5050 |
-
"current_to": "2026-03-31",
|
| 5051 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-220.html",
|
| 5052 |
-
"id": "C-24.5-s220",
|
| 5053 |
-
"text": "220 [Amendment]",
|
| 5054 |
-
"citation": "Cannabis Act, s. 220"
|
| 5055 |
-
},
|
| 5056 |
-
{
|
| 5057 |
-
"act_code": "C-24.5",
|
| 5058 |
-
"act_short": "Cannabis Act",
|
| 5059 |
-
"act_name": "Cannabis Act",
|
| 5060 |
-
"section": "221",
|
| 5061 |
-
"marginal_note": "",
|
| 5062 |
-
"part": "PART 14 - Criminal Code",
|
| 5063 |
-
"division": "",
|
| 5064 |
-
"heading": "Amendments to the Act",
|
| 5065 |
-
"history": "",
|
| 5066 |
-
"last_amended": "2018-10-17",
|
| 5067 |
-
"in_force": "2018-10-17",
|
| 5068 |
-
"status": "in force",
|
| 5069 |
-
"current_to": "2026-03-31",
|
| 5070 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-221.html",
|
| 5071 |
-
"id": "C-24.5-s221",
|
| 5072 |
-
"text": "221 [Amendment]",
|
| 5073 |
-
"citation": "Cannabis Act, s. 221"
|
| 5074 |
-
},
|
| 5075 |
-
{
|
| 5076 |
-
"act_code": "C-24.5",
|
| 5077 |
-
"act_short": "Cannabis Act",
|
| 5078 |
-
"act_name": "Cannabis Act",
|
| 5079 |
-
"section": "222",
|
| 5080 |
-
"marginal_note": "",
|
| 5081 |
-
"part": "PART 14 - Criminal Code",
|
| 5082 |
-
"division": "",
|
| 5083 |
-
"heading": "Amendments to the Act",
|
| 5084 |
-
"history": "",
|
| 5085 |
-
"last_amended": "2018-10-17",
|
| 5086 |
-
"in_force": "2018-10-17",
|
| 5087 |
-
"status": "in force",
|
| 5088 |
-
"current_to": "2026-03-31",
|
| 5089 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-222.html",
|
| 5090 |
-
"id": "C-24.5-s222",
|
| 5091 |
-
"text": "222 [Amendment]",
|
| 5092 |
-
"citation": "Cannabis Act, s. 222"
|
| 5093 |
-
},
|
| 5094 |
-
{
|
| 5095 |
-
"act_code": "C-24.5",
|
| 5096 |
-
"act_short": "Cannabis Act",
|
| 5097 |
-
"act_name": "Cannabis Act",
|
| 5098 |
-
"section": "223",
|
| 5099 |
-
"marginal_note": "",
|
| 5100 |
-
"part": "PART 14 - Criminal Code",
|
| 5101 |
-
"division": "",
|
| 5102 |
-
"heading": "Amendments to the Act",
|
| 5103 |
-
"history": "",
|
| 5104 |
-
"last_amended": "2018-10-17",
|
| 5105 |
-
"in_force": "2018-10-17",
|
| 5106 |
-
"status": "in force",
|
| 5107 |
-
"current_to": "2026-03-31",
|
| 5108 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-223.html",
|
| 5109 |
-
"id": "C-24.5-s223",
|
| 5110 |
-
"text": "223 [Amendment]",
|
| 5111 |
-
"citation": "Cannabis Act, s. 223"
|
| 5112 |
-
},
|
| 5113 |
-
{
|
| 5114 |
-
"act_code": "C-24.5",
|
| 5115 |
-
"act_short": "Cannabis Act",
|
| 5116 |
-
"act_name": "Cannabis Act",
|
| 5117 |
-
"section": "224",
|
| 5118 |
-
"marginal_note": "",
|
| 5119 |
-
"part": "PART 14 - Criminal Code",
|
| 5120 |
-
"division": "",
|
| 5121 |
-
"heading": "Amendments to the Act",
|
| 5122 |
-
"history": "",
|
| 5123 |
-
"last_amended": "2018-10-17",
|
| 5124 |
-
"in_force": "2018-10-17",
|
| 5125 |
-
"status": "in force",
|
| 5126 |
-
"current_to": "2026-03-31",
|
| 5127 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-224.html",
|
| 5128 |
-
"id": "C-24.5-s224",
|
| 5129 |
-
"text": "224 [Amendments]",
|
| 5130 |
-
"citation": "Cannabis Act, s. 224"
|
| 5131 |
-
},
|
| 5132 |
-
{
|
| 5133 |
-
"act_code": "C-24.5",
|
| 5134 |
-
"act_short": "Cannabis Act",
|
| 5135 |
-
"act_name": "Cannabis Act",
|
| 5136 |
-
"section": "225",
|
| 5137 |
-
"marginal_note": "",
|
| 5138 |
-
"part": "PART 14 - Criminal Code",
|
| 5139 |
-
"division": "",
|
| 5140 |
-
"heading": "Coordinating Amendment",
|
| 5141 |
-
"history": "",
|
| 5142 |
-
"last_amended": "2018-06-21",
|
| 5143 |
-
"in_force": "2018-06-21",
|
| 5144 |
-
"status": "in force",
|
| 5145 |
-
"current_to": "2026-03-31",
|
| 5146 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/c-24.5/section-225.html",
|
| 5147 |
-
"id": "C-24.5-s225",
|
| 5148 |
-
"text": "225 [Amendment]",
|
| 5149 |
-
"citation": "Cannabis Act, s. 225"
|
| 5150 |
-
},
|
| 5151 |
{
|
| 5152 |
"act_code": "C-24.5",
|
| 5153 |
"act_short": "Cannabis Act",
|
|
|
|
| 3875 |
"text": "161\n(1) The Governor in Council may make regulations that the Governor in Council considers necessary to provide for any transitional matter arising from the coming into force of any provision of this Act.\n(2) [Retroactive effect] Regulations made under subsection (1) may, if they so provide, be retroactive and have effect with respect to any period before they are made.",
|
| 3876 |
"citation": "Cannabis Act, s. 161"
|
| 3877 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3878 |
{
|
| 3879 |
"act_code": "C-24.5",
|
| 3880 |
"act_short": "Cannabis Act",
|
|
|
|
| 3894 |
"text": "164 [Repealed before coming into force, 2018, c. 16, s. 189]",
|
| 3895 |
"citation": "Cannabis Act, s. 164"
|
| 3896 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 3897 |
{
|
| 3898 |
"act_code": "C-24.5",
|
| 3899 |
"act_short": "Cannabis Act",
|
|
@@ -1842,25 +1842,6 @@
|
|
| 1842 |
"text": "76 [Repeal]",
|
| 1843 |
"citation": "Health of Animals Act, s. 76"
|
| 1844 |
},
|
| 1845 |
-
{
|
| 1846 |
-
"act_code": "H-3.3",
|
| 1847 |
-
"act_short": "Health of Animals Act",
|
| 1848 |
-
"act_name": "Health of Animals Act",
|
| 1849 |
-
"section": "77",
|
| 1850 |
-
"marginal_note": "",
|
| 1851 |
-
"part": "",
|
| 1852 |
-
"division": "",
|
| 1853 |
-
"heading": "Consequential Amendments",
|
| 1854 |
-
"history": "",
|
| 1855 |
-
"last_amended": "2002-12-31",
|
| 1856 |
-
"in_force": "2002-12-31",
|
| 1857 |
-
"status": "in force",
|
| 1858 |
-
"current_to": "2019-06-21",
|
| 1859 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/h-3.3/section-77.html",
|
| 1860 |
-
"id": "H-3.3-s77",
|
| 1861 |
-
"text": "77 [Amendment]",
|
| 1862 |
-
"citation": "Health of Animals Act, s. 77"
|
| 1863 |
-
},
|
| 1864 |
{
|
| 1865 |
"act_code": "H-3.3",
|
| 1866 |
"act_short": "Health of Animals Act",
|
|
|
|
| 1842 |
"text": "76 [Repeal]",
|
| 1843 |
"citation": "Health of Animals Act, s. 76"
|
| 1844 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1845 |
{
|
| 1846 |
"act_code": "H-3.3",
|
| 1847 |
"act_short": "Health of Animals Act",
|
|
@@ -5946,44 +5946,6 @@
|
|
| 5946 |
"text": "201 The regulations may provide for measures regarding the transition between the former Act and this Act, including measures regarding classes of persons who will be subject in whole or in part to this Act or the former Act and measures regarding financial and enforcement matters.",
|
| 5947 |
"citation": "IRPA, s. 201"
|
| 5948 |
},
|
| 5949 |
-
{
|
| 5950 |
-
"act_code": "I-2.5",
|
| 5951 |
-
"act_short": "IRPA",
|
| 5952 |
-
"act_name": "Immigration and Refugee Protection Act",
|
| 5953 |
-
"section": "202",
|
| 5954 |
-
"marginal_note": "",
|
| 5955 |
-
"part": "PART 5 - Transitional Provisions, Consequential and Related Amendments, Coordinating Amendments, Repeals and Coming into Force",
|
| 5956 |
-
"division": "",
|
| 5957 |
-
"heading": "Access to Information Act",
|
| 5958 |
-
"history": "",
|
| 5959 |
-
"last_amended": "2003-01-01",
|
| 5960 |
-
"in_force": "2003-01-01",
|
| 5961 |
-
"status": "in force",
|
| 5962 |
-
"current_to": "2026-03-31",
|
| 5963 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/i-2.5/section-202.html",
|
| 5964 |
-
"id": "I-2.5-s202",
|
| 5965 |
-
"text": "202 [Amendment]",
|
| 5966 |
-
"citation": "IRPA, s. 202"
|
| 5967 |
-
},
|
| 5968 |
-
{
|
| 5969 |
-
"act_code": "I-2.5",
|
| 5970 |
-
"act_short": "IRPA",
|
| 5971 |
-
"act_name": "Immigration and Refugee Protection Act",
|
| 5972 |
-
"section": "203",
|
| 5973 |
-
"marginal_note": "",
|
| 5974 |
-
"part": "PART 5 - Transitional Provisions, Consequential and Related Amendments, Coordinating Amendments, Repeals and Coming into Force",
|
| 5975 |
-
"division": "",
|
| 5976 |
-
"heading": "Agricultural Marketing Programs Act",
|
| 5977 |
-
"history": "",
|
| 5978 |
-
"last_amended": "2003-01-01",
|
| 5979 |
-
"in_force": "2003-01-01",
|
| 5980 |
-
"status": "in force",
|
| 5981 |
-
"current_to": "2026-03-31",
|
| 5982 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/i-2.5/section-203.html",
|
| 5983 |
-
"id": "I-2.5-s203",
|
| 5984 |
-
"text": "203 [Amendment]",
|
| 5985 |
-
"citation": "IRPA, s. 203"
|
| 5986 |
-
},
|
| 5987 |
{
|
| 5988 |
"act_code": "I-2.5",
|
| 5989 |
"act_short": "IRPA",
|
|
@@ -6003,101 +5965,6 @@
|
|
| 6003 |
"text": "204 and 205 [Amendments]",
|
| 6004 |
"citation": "IRPA, s. 204 and 205"
|
| 6005 |
},
|
| 6006 |
-
{
|
| 6007 |
-
"act_code": "I-2.5",
|
| 6008 |
-
"act_short": "IRPA",
|
| 6009 |
-
"act_name": "Immigration and Refugee Protection Act",
|
| 6010 |
-
"section": "206",
|
| 6011 |
-
"marginal_note": "",
|
| 6012 |
-
"part": "PART 5 - Transitional Provisions, Consequential and Related Amendments, Coordinating Amendments, Repeals and Coming into Force",
|
| 6013 |
-
"division": "",
|
| 6014 |
-
"heading": "Bank Act",
|
| 6015 |
-
"history": "",
|
| 6016 |
-
"last_amended": "2003-01-01",
|
| 6017 |
-
"in_force": "2003-01-01",
|
| 6018 |
-
"status": "in force",
|
| 6019 |
-
"current_to": "2026-03-31",
|
| 6020 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/i-2.5/section-206.html",
|
| 6021 |
-
"id": "I-2.5-s206",
|
| 6022 |
-
"text": "206 [Amendment]",
|
| 6023 |
-
"citation": "IRPA, s. 206"
|
| 6024 |
-
},
|
| 6025 |
-
{
|
| 6026 |
-
"act_code": "I-2.5",
|
| 6027 |
-
"act_short": "IRPA",
|
| 6028 |
-
"act_name": "Immigration and Refugee Protection Act",
|
| 6029 |
-
"section": "207",
|
| 6030 |
-
"marginal_note": "",
|
| 6031 |
-
"part": "PART 5 - Transitional Provisions, Consequential and Related Amendments, Coordinating Amendments, Repeals and Coming into Force",
|
| 6032 |
-
"division": "",
|
| 6033 |
-
"heading": "Budget Implementation Act, 1998",
|
| 6034 |
-
"history": "",
|
| 6035 |
-
"last_amended": "2003-01-01",
|
| 6036 |
-
"in_force": "2003-01-01",
|
| 6037 |
-
"status": "in force",
|
| 6038 |
-
"current_to": "2026-03-31",
|
| 6039 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/i-2.5/section-207.html",
|
| 6040 |
-
"id": "I-2.5-s207",
|
| 6041 |
-
"text": "207 [Amendment]",
|
| 6042 |
-
"citation": "IRPA, s. 207"
|
| 6043 |
-
},
|
| 6044 |
-
{
|
| 6045 |
-
"act_code": "I-2.5",
|
| 6046 |
-
"act_short": "IRPA",
|
| 6047 |
-
"act_name": "Immigration and Refugee Protection Act",
|
| 6048 |
-
"section": "208",
|
| 6049 |
-
"marginal_note": "",
|
| 6050 |
-
"part": "PART 5 - Transitional Provisions, Consequential and Related Amendments, Coordinating Amendments, Repeals and Coming into Force",
|
| 6051 |
-
"division": "",
|
| 6052 |
-
"heading": "Business Development Bank of Canada Act",
|
| 6053 |
-
"history": "",
|
| 6054 |
-
"last_amended": "2003-01-01",
|
| 6055 |
-
"in_force": "2003-01-01",
|
| 6056 |
-
"status": "in force",
|
| 6057 |
-
"current_to": "2026-03-31",
|
| 6058 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/i-2.5/section-208.html",
|
| 6059 |
-
"id": "I-2.5-s208",
|
| 6060 |
-
"text": "208 [Amendments]",
|
| 6061 |
-
"citation": "IRPA, s. 208"
|
| 6062 |
-
},
|
| 6063 |
-
{
|
| 6064 |
-
"act_code": "I-2.5",
|
| 6065 |
-
"act_short": "IRPA",
|
| 6066 |
-
"act_name": "Immigration and Refugee Protection Act",
|
| 6067 |
-
"section": "209",
|
| 6068 |
-
"marginal_note": "",
|
| 6069 |
-
"part": "PART 5 - Transitional Provisions, Consequential and Related Amendments, Coordinating Amendments, Repeals and Coming into Force",
|
| 6070 |
-
"division": "",
|
| 6071 |
-
"heading": "Canada Business Corporations Act",
|
| 6072 |
-
"history": "",
|
| 6073 |
-
"last_amended": "2003-01-01",
|
| 6074 |
-
"in_force": "2003-01-01",
|
| 6075 |
-
"status": "in force",
|
| 6076 |
-
"current_to": "2026-03-31",
|
| 6077 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/i-2.5/section-209.html",
|
| 6078 |
-
"id": "I-2.5-s209",
|
| 6079 |
-
"text": "209 [Amendment]",
|
| 6080 |
-
"citation": "IRPA, s. 209"
|
| 6081 |
-
},
|
| 6082 |
-
{
|
| 6083 |
-
"act_code": "I-2.5",
|
| 6084 |
-
"act_short": "IRPA",
|
| 6085 |
-
"act_name": "Immigration and Refugee Protection Act",
|
| 6086 |
-
"section": "210",
|
| 6087 |
-
"marginal_note": "",
|
| 6088 |
-
"part": "PART 5 - Transitional Provisions, Consequential and Related Amendments, Coordinating Amendments, Repeals and Coming into Force",
|
| 6089 |
-
"division": "",
|
| 6090 |
-
"heading": "Canada Customs and Revenue Agency Act",
|
| 6091 |
-
"history": "",
|
| 6092 |
-
"last_amended": "2003-01-01",
|
| 6093 |
-
"in_force": "2003-01-01",
|
| 6094 |
-
"status": "in force",
|
| 6095 |
-
"current_to": "2026-03-31",
|
| 6096 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/i-2.5/section-210.html",
|
| 6097 |
-
"id": "I-2.5-s210",
|
| 6098 |
-
"text": "210 [Amendment]",
|
| 6099 |
-
"citation": "IRPA, s. 210"
|
| 6100 |
-
},
|
| 6101 |
{
|
| 6102 |
"act_code": "I-2.5",
|
| 6103 |
"act_short": "IRPA",
|
|
@@ -6117,25 +5984,6 @@
|
|
| 6117 |
"text": "211 to 214 [Amendments]",
|
| 6118 |
"citation": "IRPA, s. 211 to 214"
|
| 6119 |
},
|
| 6120 |
-
{
|
| 6121 |
-
"act_code": "I-2.5",
|
| 6122 |
-
"act_short": "IRPA",
|
| 6123 |
-
"act_name": "Immigration and Refugee Protection Act",
|
| 6124 |
-
"section": "215",
|
| 6125 |
-
"marginal_note": "",
|
| 6126 |
-
"part": "PART 5 - Transitional Provisions, Consequential and Related Amendments, Coordinating Amendments, Repeals and Coming into Force",
|
| 6127 |
-
"division": "",
|
| 6128 |
-
"heading": "Canada Labour Code",
|
| 6129 |
-
"history": "",
|
| 6130 |
-
"last_amended": "2003-01-01",
|
| 6131 |
-
"in_force": "2003-01-01",
|
| 6132 |
-
"status": "in force",
|
| 6133 |
-
"current_to": "2026-03-31",
|
| 6134 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/i-2.5/section-215.html",
|
| 6135 |
-
"id": "I-2.5-s215",
|
| 6136 |
-
"text": "215 [Amendment]",
|
| 6137 |
-
"citation": "IRPA, s. 215"
|
| 6138 |
-
},
|
| 6139 |
{
|
| 6140 |
"act_code": "I-2.5",
|
| 6141 |
"act_short": "IRPA",
|
|
@@ -6155,44 +6003,6 @@
|
|
| 6155 |
"text": "216 to 218 [Amendments]",
|
| 6156 |
"citation": "IRPA, s. 216 to 218"
|
| 6157 |
},
|
| 6158 |
-
{
|
| 6159 |
-
"act_code": "I-2.5",
|
| 6160 |
-
"act_short": "IRPA",
|
| 6161 |
-
"act_name": "Immigration and Refugee Protection Act",
|
| 6162 |
-
"section": "219",
|
| 6163 |
-
"marginal_note": "",
|
| 6164 |
-
"part": "PART 5 - Transitional Provisions, Consequential and Related Amendments, Coordinating Amendments, Repeals and Coming into Force",
|
| 6165 |
-
"division": "",
|
| 6166 |
-
"heading": "Canada Student Financial Assistance Act",
|
| 6167 |
-
"history": "",
|
| 6168 |
-
"last_amended": "2003-01-01",
|
| 6169 |
-
"in_force": "2003-01-01",
|
| 6170 |
-
"status": "in force",
|
| 6171 |
-
"current_to": "2026-03-31",
|
| 6172 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/i-2.5/section-219.html",
|
| 6173 |
-
"id": "I-2.5-s219",
|
| 6174 |
-
"text": "219 [Amendment]",
|
| 6175 |
-
"citation": "IRPA, s. 219"
|
| 6176 |
-
},
|
| 6177 |
-
{
|
| 6178 |
-
"act_code": "I-2.5",
|
| 6179 |
-
"act_short": "IRPA",
|
| 6180 |
-
"act_name": "Immigration and Refugee Protection Act",
|
| 6181 |
-
"section": "220",
|
| 6182 |
-
"marginal_note": "",
|
| 6183 |
-
"part": "PART 5 - Transitional Provisions, Consequential and Related Amendments, Coordinating Amendments, Repeals and Coming into Force",
|
| 6184 |
-
"division": "",
|
| 6185 |
-
"heading": "Canada Student Loans Act",
|
| 6186 |
-
"history": "",
|
| 6187 |
-
"last_amended": "2003-01-01",
|
| 6188 |
-
"in_force": "2003-01-01",
|
| 6189 |
-
"status": "in force",
|
| 6190 |
-
"current_to": "2026-03-31",
|
| 6191 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/i-2.5/section-220.html",
|
| 6192 |
-
"id": "I-2.5-s220",
|
| 6193 |
-
"text": "220 [Amendment]",
|
| 6194 |
-
"citation": "IRPA, s. 220"
|
| 6195 |
-
},
|
| 6196 |
{
|
| 6197 |
"act_code": "I-2.5",
|
| 6198 |
"act_short": "IRPA",
|
|
@@ -6231,25 +6041,6 @@
|
|
| 6231 |
"text": "223 to 226 [Amendments]",
|
| 6232 |
"citation": "IRPA, s. 223 to 226"
|
| 6233 |
},
|
| 6234 |
-
{
|
| 6235 |
-
"act_code": "I-2.5",
|
| 6236 |
-
"act_short": "IRPA",
|
| 6237 |
-
"act_name": "Immigration and Refugee Protection Act",
|
| 6238 |
-
"section": "227",
|
| 6239 |
-
"marginal_note": "",
|
| 6240 |
-
"part": "PART 5 - Transitional Provisions, Consequential and Related Amendments, Coordinating Amendments, Repeals and Coming into Force",
|
| 6241 |
-
"division": "",
|
| 6242 |
-
"heading": "Chemical Weapons Convention Implementation Act",
|
| 6243 |
-
"history": "",
|
| 6244 |
-
"last_amended": "2003-01-01",
|
| 6245 |
-
"in_force": "2003-01-01",
|
| 6246 |
-
"status": "in force",
|
| 6247 |
-
"current_to": "2026-03-31",
|
| 6248 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/i-2.5/section-227.html",
|
| 6249 |
-
"id": "I-2.5-s227",
|
| 6250 |
-
"text": "227 [Amendment]",
|
| 6251 |
-
"citation": "IRPA, s. 227"
|
| 6252 |
-
},
|
| 6253 |
{
|
| 6254 |
"act_code": "I-2.5",
|
| 6255 |
"act_short": "IRPA",
|
|
@@ -6269,44 +6060,6 @@
|
|
| 6269 |
"text": "227.1 to 232 [Amendments]",
|
| 6270 |
"citation": "IRPA, s. 227.1 to 232"
|
| 6271 |
},
|
| 6272 |
-
{
|
| 6273 |
-
"act_code": "I-2.5",
|
| 6274 |
-
"act_short": "IRPA",
|
| 6275 |
-
"act_name": "Immigration and Refugee Protection Act",
|
| 6276 |
-
"section": "233",
|
| 6277 |
-
"marginal_note": "",
|
| 6278 |
-
"part": "PART 5 - Transitional Provisions, Consequential and Related Amendments, Coordinating Amendments, Repeals and Coming into Force",
|
| 6279 |
-
"division": "",
|
| 6280 |
-
"heading": "Comprehensive Nuclear Test-Ban Treaty Implementation Act",
|
| 6281 |
-
"history": "",
|
| 6282 |
-
"last_amended": "2003-01-01",
|
| 6283 |
-
"in_force": "2003-01-01",
|
| 6284 |
-
"status": "in force",
|
| 6285 |
-
"current_to": "2026-03-31",
|
| 6286 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/i-2.5/section-233.html",
|
| 6287 |
-
"id": "I-2.5-s233",
|
| 6288 |
-
"text": "233 [Amendment]",
|
| 6289 |
-
"citation": "IRPA, s. 233"
|
| 6290 |
-
},
|
| 6291 |
-
{
|
| 6292 |
-
"act_code": "I-2.5",
|
| 6293 |
-
"act_short": "IRPA",
|
| 6294 |
-
"act_name": "Immigration and Refugee Protection Act",
|
| 6295 |
-
"section": "234",
|
| 6296 |
-
"marginal_note": "",
|
| 6297 |
-
"part": "PART 5 - Transitional Provisions, Consequential and Related Amendments, Coordinating Amendments, Repeals and Coming into Force",
|
| 6298 |
-
"division": "",
|
| 6299 |
-
"heading": "Cooperative Credit Associations Act",
|
| 6300 |
-
"history": "",
|
| 6301 |
-
"last_amended": "2003-01-01",
|
| 6302 |
-
"in_force": "2003-01-01",
|
| 6303 |
-
"status": "in force",
|
| 6304 |
-
"current_to": "2026-03-31",
|
| 6305 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/i-2.5/section-234.html",
|
| 6306 |
-
"id": "I-2.5-s234",
|
| 6307 |
-
"text": "234 [Amendment]",
|
| 6308 |
-
"citation": "IRPA, s. 234"
|
| 6309 |
-
},
|
| 6310 |
{
|
| 6311 |
"act_code": "I-2.5",
|
| 6312 |
"act_short": "IRPA",
|
|
@@ -6345,25 +6098,6 @@
|
|
| 6345 |
"text": "242 and 243 [Amendments]",
|
| 6346 |
"citation": "IRPA, s. 242 and 243"
|
| 6347 |
},
|
| 6348 |
-
{
|
| 6349 |
-
"act_code": "I-2.5",
|
| 6350 |
-
"act_short": "IRPA",
|
| 6351 |
-
"act_name": "Immigration and Refugee Protection Act",
|
| 6352 |
-
"section": "244",
|
| 6353 |
-
"marginal_note": "",
|
| 6354 |
-
"part": "PART 5 - Transitional Provisions, Consequential and Related Amendments, Coordinating Amendments, Repeals and Coming into Force",
|
| 6355 |
-
"division": "",
|
| 6356 |
-
"heading": "Criminal Code",
|
| 6357 |
-
"history": "",
|
| 6358 |
-
"last_amended": "2004-05-06",
|
| 6359 |
-
"in_force": "2004-05-06",
|
| 6360 |
-
"status": "in force",
|
| 6361 |
-
"current_to": "2026-03-31",
|
| 6362 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/i-2.5/section-244.html",
|
| 6363 |
-
"id": "I-2.5-s244",
|
| 6364 |
-
"text": "244 [Amendment]",
|
| 6365 |
-
"citation": "IRPA, s. 244"
|
| 6366 |
-
},
|
| 6367 |
{
|
| 6368 |
"act_code": "I-2.5",
|
| 6369 |
"act_short": "IRPA",
|
|
@@ -6440,63 +6174,6 @@
|
|
| 6440 |
"text": "250 to 252 [Amendments]",
|
| 6441 |
"citation": "IRPA, s. 250 to 252"
|
| 6442 |
},
|
| 6443 |
-
{
|
| 6444 |
-
"act_code": "I-2.5",
|
| 6445 |
-
"act_short": "IRPA",
|
| 6446 |
-
"act_name": "Immigration and Refugee Protection Act",
|
| 6447 |
-
"section": "253",
|
| 6448 |
-
"marginal_note": "",
|
| 6449 |
-
"part": "PART 5 - Transitional Provisions, Consequential and Related Amendments, Coordinating Amendments, Repeals and Coming into Force",
|
| 6450 |
-
"division": "",
|
| 6451 |
-
"heading": "Foreign Publishers Advertising Services Act",
|
| 6452 |
-
"history": "",
|
| 6453 |
-
"last_amended": "2003-01-01",
|
| 6454 |
-
"in_force": "2003-01-01",
|
| 6455 |
-
"status": "in force",
|
| 6456 |
-
"current_to": "2026-03-31",
|
| 6457 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/i-2.5/section-253.html",
|
| 6458 |
-
"id": "I-2.5-s253",
|
| 6459 |
-
"text": "253 [Amendments]",
|
| 6460 |
-
"citation": "IRPA, s. 253"
|
| 6461 |
-
},
|
| 6462 |
-
{
|
| 6463 |
-
"act_code": "I-2.5",
|
| 6464 |
-
"act_short": "IRPA",
|
| 6465 |
-
"act_name": "Immigration and Refugee Protection Act",
|
| 6466 |
-
"section": "254",
|
| 6467 |
-
"marginal_note": "",
|
| 6468 |
-
"part": "PART 5 - Transitional Provisions, Consequential and Related Amendments, Coordinating Amendments, Repeals and Coming into Force",
|
| 6469 |
-
"division": "",
|
| 6470 |
-
"heading": "Income Tax Act",
|
| 6471 |
-
"history": "",
|
| 6472 |
-
"last_amended": "2003-01-01",
|
| 6473 |
-
"in_force": "2003-01-01",
|
| 6474 |
-
"status": "in force",
|
| 6475 |
-
"current_to": "2026-03-31",
|
| 6476 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/i-2.5/section-254.html",
|
| 6477 |
-
"id": "I-2.5-s254",
|
| 6478 |
-
"text": "254 [Amendment]",
|
| 6479 |
-
"citation": "IRPA, s. 254"
|
| 6480 |
-
},
|
| 6481 |
-
{
|
| 6482 |
-
"act_code": "I-2.5",
|
| 6483 |
-
"act_short": "IRPA",
|
| 6484 |
-
"act_name": "Immigration and Refugee Protection Act",
|
| 6485 |
-
"section": "255",
|
| 6486 |
-
"marginal_note": "",
|
| 6487 |
-
"part": "PART 5 - Transitional Provisions, Consequential and Related Amendments, Coordinating Amendments, Repeals and Coming into Force",
|
| 6488 |
-
"division": "",
|
| 6489 |
-
"heading": "Insurance Companies Act",
|
| 6490 |
-
"history": "",
|
| 6491 |
-
"last_amended": "2003-01-01",
|
| 6492 |
-
"in_force": "2003-01-01",
|
| 6493 |
-
"status": "in force",
|
| 6494 |
-
"current_to": "2026-03-31",
|
| 6495 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/i-2.5/section-255.html",
|
| 6496 |
-
"id": "I-2.5-s255",
|
| 6497 |
-
"text": "255 [Amendment]",
|
| 6498 |
-
"citation": "IRPA, s. 255"
|
| 6499 |
-
},
|
| 6500 |
{
|
| 6501 |
"act_code": "I-2.5",
|
| 6502 |
"act_short": "IRPA",
|
|
@@ -6516,82 +6193,6 @@
|
|
| 6516 |
"text": "256 to 258 [Amendments]",
|
| 6517 |
"citation": "IRPA, s. 256 to 258"
|
| 6518 |
},
|
| 6519 |
-
{
|
| 6520 |
-
"act_code": "I-2.5",
|
| 6521 |
-
"act_short": "IRPA",
|
| 6522 |
-
"act_name": "Immigration and Refugee Protection Act",
|
| 6523 |
-
"section": "259",
|
| 6524 |
-
"marginal_note": "",
|
| 6525 |
-
"part": "PART 5 - Transitional Provisions, Consequential and Related Amendments, Coordinating Amendments, Repeals and Coming into Force",
|
| 6526 |
-
"division": "",
|
| 6527 |
-
"heading": "Investment Canada Act",
|
| 6528 |
-
"history": "",
|
| 6529 |
-
"last_amended": "2003-01-01",
|
| 6530 |
-
"in_force": "2003-01-01",
|
| 6531 |
-
"status": "in force",
|
| 6532 |
-
"current_to": "2026-03-31",
|
| 6533 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/i-2.5/section-259.html",
|
| 6534 |
-
"id": "I-2.5-s259",
|
| 6535 |
-
"text": "259 [Amendment]",
|
| 6536 |
-
"citation": "IRPA, s. 259"
|
| 6537 |
-
},
|
| 6538 |
-
{
|
| 6539 |
-
"act_code": "I-2.5",
|
| 6540 |
-
"act_short": "IRPA",
|
| 6541 |
-
"act_name": "Immigration and Refugee Protection Act",
|
| 6542 |
-
"section": "260",
|
| 6543 |
-
"marginal_note": "",
|
| 6544 |
-
"part": "PART 5 - Transitional Provisions, Consequential and Related Amendments, Coordinating Amendments, Repeals and Coming into Force",
|
| 6545 |
-
"division": "",
|
| 6546 |
-
"heading": "Labour Adjustment Benefits Act",
|
| 6547 |
-
"history": "",
|
| 6548 |
-
"last_amended": "2003-01-01",
|
| 6549 |
-
"in_force": "2003-01-01",
|
| 6550 |
-
"status": "in force",
|
| 6551 |
-
"current_to": "2026-03-31",
|
| 6552 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/i-2.5/section-260.html",
|
| 6553 |
-
"id": "I-2.5-s260",
|
| 6554 |
-
"text": "260 [Amendment]",
|
| 6555 |
-
"citation": "IRPA, s. 260"
|
| 6556 |
-
},
|
| 6557 |
-
{
|
| 6558 |
-
"act_code": "I-2.5",
|
| 6559 |
-
"act_short": "IRPA",
|
| 6560 |
-
"act_name": "Immigration and Refugee Protection Act",
|
| 6561 |
-
"section": "261",
|
| 6562 |
-
"marginal_note": "",
|
| 6563 |
-
"part": "PART 5 - Transitional Provisions, Consequential and Related Amendments, Coordinating Amendments, Repeals and Coming into Force",
|
| 6564 |
-
"division": "",
|
| 6565 |
-
"heading": "Mutual Legal Assistance in Criminal Matters Act",
|
| 6566 |
-
"history": "",
|
| 6567 |
-
"last_amended": "2003-01-01",
|
| 6568 |
-
"in_force": "2003-01-01",
|
| 6569 |
-
"status": "in force",
|
| 6570 |
-
"current_to": "2026-03-31",
|
| 6571 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/i-2.5/section-261.html",
|
| 6572 |
-
"id": "I-2.5-s261",
|
| 6573 |
-
"text": "261 [Amendments]",
|
| 6574 |
-
"citation": "IRPA, s. 261"
|
| 6575 |
-
},
|
| 6576 |
-
{
|
| 6577 |
-
"act_code": "I-2.5",
|
| 6578 |
-
"act_short": "IRPA",
|
| 6579 |
-
"act_name": "Immigration and Refugee Protection Act",
|
| 6580 |
-
"section": "262",
|
| 6581 |
-
"marginal_note": "",
|
| 6582 |
-
"part": "PART 5 - Transitional Provisions, Consequential and Related Amendments, Coordinating Amendments, Repeals and Coming into Force",
|
| 6583 |
-
"division": "",
|
| 6584 |
-
"heading": "National Energy Board Act",
|
| 6585 |
-
"history": "",
|
| 6586 |
-
"last_amended": "2003-01-01",
|
| 6587 |
-
"in_force": "2003-01-01",
|
| 6588 |
-
"status": "in force",
|
| 6589 |
-
"current_to": "2026-03-31",
|
| 6590 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/i-2.5/section-262.html",
|
| 6591 |
-
"id": "I-2.5-s262",
|
| 6592 |
-
"text": "262 [Amendment]",
|
| 6593 |
-
"citation": "IRPA, s. 262"
|
| 6594 |
-
},
|
| 6595 |
{
|
| 6596 |
"act_code": "I-2.5",
|
| 6597 |
"act_short": "IRPA",
|
|
@@ -6611,101 +6212,6 @@
|
|
| 6611 |
"text": "263 to 267 [Amendments]",
|
| 6612 |
"citation": "IRPA, s. 263 to 267"
|
| 6613 |
},
|
| 6614 |
-
{
|
| 6615 |
-
"act_code": "I-2.5",
|
| 6616 |
-
"act_short": "IRPA",
|
| 6617 |
-
"act_name": "Immigration and Refugee Protection Act",
|
| 6618 |
-
"section": "268",
|
| 6619 |
-
"marginal_note": "",
|
| 6620 |
-
"part": "PART 5 - Transitional Provisions, Consequential and Related Amendments, Coordinating Amendments, Repeals and Coming into Force",
|
| 6621 |
-
"division": "",
|
| 6622 |
-
"heading": "Pilotage Act",
|
| 6623 |
-
"history": "",
|
| 6624 |
-
"last_amended": "2003-01-01",
|
| 6625 |
-
"in_force": "2003-01-01",
|
| 6626 |
-
"status": "in force",
|
| 6627 |
-
"current_to": "2026-03-31",
|
| 6628 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/i-2.5/section-268.html",
|
| 6629 |
-
"id": "I-2.5-s268",
|
| 6630 |
-
"text": "268 [Amendment]",
|
| 6631 |
-
"citation": "IRPA, s. 268"
|
| 6632 |
-
},
|
| 6633 |
-
{
|
| 6634 |
-
"act_code": "I-2.5",
|
| 6635 |
-
"act_short": "IRPA",
|
| 6636 |
-
"act_name": "Immigration and Refugee Protection Act",
|
| 6637 |
-
"section": "269",
|
| 6638 |
-
"marginal_note": "",
|
| 6639 |
-
"part": "PART 5 - Transitional Provisions, Consequential and Related Amendments, Coordinating Amendments, Repeals and Coming into Force",
|
| 6640 |
-
"division": "",
|
| 6641 |
-
"heading": "Privacy Act",
|
| 6642 |
-
"history": "",
|
| 6643 |
-
"last_amended": "2003-01-01",
|
| 6644 |
-
"in_force": "2003-01-01",
|
| 6645 |
-
"status": "in force",
|
| 6646 |
-
"current_to": "2026-03-31",
|
| 6647 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/i-2.5/section-269.html",
|
| 6648 |
-
"id": "I-2.5-s269",
|
| 6649 |
-
"text": "269 [Amendment]",
|
| 6650 |
-
"citation": "IRPA, s. 269"
|
| 6651 |
-
},
|
| 6652 |
-
{
|
| 6653 |
-
"act_code": "I-2.5",
|
| 6654 |
-
"act_short": "IRPA",
|
| 6655 |
-
"act_name": "Immigration and Refugee Protection Act",
|
| 6656 |
-
"section": "270",
|
| 6657 |
-
"marginal_note": "",
|
| 6658 |
-
"part": "PART 5 - Transitional Provisions, Consequential and Related Amendments, Coordinating Amendments, Repeals and Coming into Force",
|
| 6659 |
-
"division": "",
|
| 6660 |
-
"heading": "Proceeds of Crime (Money Laundering) Act",
|
| 6661 |
-
"history": "",
|
| 6662 |
-
"last_amended": "2003-01-01",
|
| 6663 |
-
"in_force": "2003-01-01",
|
| 6664 |
-
"status": "in force",
|
| 6665 |
-
"current_to": "2026-03-31",
|
| 6666 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/i-2.5/section-270.html",
|
| 6667 |
-
"id": "I-2.5-s270",
|
| 6668 |
-
"text": "270 [Amendment]",
|
| 6669 |
-
"citation": "IRPA, s. 270"
|
| 6670 |
-
},
|
| 6671 |
-
{
|
| 6672 |
-
"act_code": "I-2.5",
|
| 6673 |
-
"act_short": "IRPA",
|
| 6674 |
-
"act_name": "Immigration and Refugee Protection Act",
|
| 6675 |
-
"section": "271",
|
| 6676 |
-
"marginal_note": "",
|
| 6677 |
-
"part": "PART 5 - Transitional Provisions, Consequential and Related Amendments, Coordinating Amendments, Repeals and Coming into Force",
|
| 6678 |
-
"division": "",
|
| 6679 |
-
"heading": "Trade-marks Act",
|
| 6680 |
-
"history": "",
|
| 6681 |
-
"last_amended": "2003-01-01",
|
| 6682 |
-
"in_force": "2003-01-01",
|
| 6683 |
-
"status": "in force",
|
| 6684 |
-
"current_to": "2026-03-31",
|
| 6685 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/i-2.5/section-271.html",
|
| 6686 |
-
"id": "I-2.5-s271",
|
| 6687 |
-
"text": "271 [Amendment]",
|
| 6688 |
-
"citation": "IRPA, s. 271"
|
| 6689 |
-
},
|
| 6690 |
-
{
|
| 6691 |
-
"act_code": "I-2.5",
|
| 6692 |
-
"act_short": "IRPA",
|
| 6693 |
-
"act_name": "Immigration and Refugee Protection Act",
|
| 6694 |
-
"section": "272",
|
| 6695 |
-
"marginal_note": "",
|
| 6696 |
-
"part": "PART 5 - Transitional Provisions, Consequential and Related Amendments, Coordinating Amendments, Repeals and Coming into Force",
|
| 6697 |
-
"division": "",
|
| 6698 |
-
"heading": "Trust and Loan Companies Act",
|
| 6699 |
-
"history": "",
|
| 6700 |
-
"last_amended": "2003-01-01",
|
| 6701 |
-
"in_force": "2003-01-01",
|
| 6702 |
-
"status": "in force",
|
| 6703 |
-
"current_to": "2026-03-31",
|
| 6704 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/i-2.5/section-272.html",
|
| 6705 |
-
"id": "I-2.5-s272",
|
| 6706 |
-
"text": "272 [Amendment]",
|
| 6707 |
-
"citation": "IRPA, s. 272"
|
| 6708 |
-
},
|
| 6709 |
{
|
| 6710 |
"act_code": "I-2.5",
|
| 6711 |
"act_short": "IRPA",
|
|
@@ -6725,25 +6231,6 @@
|
|
| 6725 |
"text": "273 Unless the context requires otherwise, “Immigration Act” is replaced by “Immigration and Refugee Protection Act” in\n(a) any regulation, as defined in section 2 of the Statutory Instruments Act; and\n(b) any other instrument made\n(i) in the execution of a power conferred by or under an Act of Parliament, or\n(ii) by or under the authority of the Governor in Council.",
|
| 6726 |
"citation": "IRPA, s. 273"
|
| 6727 |
},
|
| 6728 |
-
{
|
| 6729 |
-
"act_code": "I-2.5",
|
| 6730 |
-
"act_short": "IRPA",
|
| 6731 |
-
"act_name": "Immigration and Refugee Protection Act",
|
| 6732 |
-
"section": "273.1",
|
| 6733 |
-
"marginal_note": "",
|
| 6734 |
-
"part": "PART 5 - Transitional Provisions, Consequential and Related Amendments, Coordinating Amendments, Repeals and Coming into Force",
|
| 6735 |
-
"division": "",
|
| 6736 |
-
"heading": "Coordinating Amendments",
|
| 6737 |
-
"history": "",
|
| 6738 |
-
"last_amended": "2003-01-01",
|
| 6739 |
-
"in_force": "2003-01-01",
|
| 6740 |
-
"status": "in force",
|
| 6741 |
-
"current_to": "2026-03-31",
|
| 6742 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/i-2.5/section-273.1.html",
|
| 6743 |
-
"id": "I-2.5-s273.1",
|
| 6744 |
-
"text": "273.1 [Amendments]",
|
| 6745 |
-
"citation": "IRPA, s. 273.1"
|
| 6746 |
-
},
|
| 6747 |
{
|
| 6748 |
"act_code": "I-2.5",
|
| 6749 |
"act_short": "IRPA",
|
|
|
|
| 5946 |
"text": "201 The regulations may provide for measures regarding the transition between the former Act and this Act, including measures regarding classes of persons who will be subject in whole or in part to this Act or the former Act and measures regarding financial and enforcement matters.",
|
| 5947 |
"citation": "IRPA, s. 201"
|
| 5948 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5949 |
{
|
| 5950 |
"act_code": "I-2.5",
|
| 5951 |
"act_short": "IRPA",
|
|
|
|
| 5965 |
"text": "204 and 205 [Amendments]",
|
| 5966 |
"citation": "IRPA, s. 204 and 205"
|
| 5967 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5968 |
{
|
| 5969 |
"act_code": "I-2.5",
|
| 5970 |
"act_short": "IRPA",
|
|
|
|
| 5984 |
"text": "211 to 214 [Amendments]",
|
| 5985 |
"citation": "IRPA, s. 211 to 214"
|
| 5986 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5987 |
{
|
| 5988 |
"act_code": "I-2.5",
|
| 5989 |
"act_short": "IRPA",
|
|
|
|
| 6003 |
"text": "216 to 218 [Amendments]",
|
| 6004 |
"citation": "IRPA, s. 216 to 218"
|
| 6005 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6006 |
{
|
| 6007 |
"act_code": "I-2.5",
|
| 6008 |
"act_short": "IRPA",
|
|
|
|
| 6041 |
"text": "223 to 226 [Amendments]",
|
| 6042 |
"citation": "IRPA, s. 223 to 226"
|
| 6043 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6044 |
{
|
| 6045 |
"act_code": "I-2.5",
|
| 6046 |
"act_short": "IRPA",
|
|
|
|
| 6060 |
"text": "227.1 to 232 [Amendments]",
|
| 6061 |
"citation": "IRPA, s. 227.1 to 232"
|
| 6062 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6063 |
{
|
| 6064 |
"act_code": "I-2.5",
|
| 6065 |
"act_short": "IRPA",
|
|
|
|
| 6098 |
"text": "242 and 243 [Amendments]",
|
| 6099 |
"citation": "IRPA, s. 242 and 243"
|
| 6100 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6101 |
{
|
| 6102 |
"act_code": "I-2.5",
|
| 6103 |
"act_short": "IRPA",
|
|
|
|
| 6174 |
"text": "250 to 252 [Amendments]",
|
| 6175 |
"citation": "IRPA, s. 250 to 252"
|
| 6176 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6177 |
{
|
| 6178 |
"act_code": "I-2.5",
|
| 6179 |
"act_short": "IRPA",
|
|
|
|
| 6193 |
"text": "256 to 258 [Amendments]",
|
| 6194 |
"citation": "IRPA, s. 256 to 258"
|
| 6195 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6196 |
{
|
| 6197 |
"act_code": "I-2.5",
|
| 6198 |
"act_short": "IRPA",
|
|
|
|
| 6212 |
"text": "263 to 267 [Amendments]",
|
| 6213 |
"citation": "IRPA, s. 263 to 267"
|
| 6214 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6215 |
{
|
| 6216 |
"act_code": "I-2.5",
|
| 6217 |
"act_short": "IRPA",
|
|
|
|
| 6231 |
"text": "273 Unless the context requires otherwise, “Immigration Act” is replaced by “Immigration and Refugee Protection Act” in\n(a) any regulation, as defined in section 2 of the Statutory Instruments Act; and\n(b) any other instrument made\n(i) in the execution of a power conferred by or under an Act of Parliament, or\n(ii) by or under the authority of the Governor in Council.",
|
| 6232 |
"citation": "IRPA, s. 273"
|
| 6233 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6234 |
{
|
| 6235 |
"act_code": "I-2.5",
|
| 6236 |
"act_short": "IRPA",
|
|
@@ -0,0 +1,1237 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"act_code": "P-19.32",
|
| 4 |
+
"act_short": "Preclearance Act",
|
| 5 |
+
"act_name": "Preclearance Act, 2016",
|
| 6 |
+
"section": "1",
|
| 7 |
+
"marginal_note": "Short title",
|
| 8 |
+
"part": "",
|
| 9 |
+
"division": "",
|
| 10 |
+
"heading": "Short Title",
|
| 11 |
+
"history": "",
|
| 12 |
+
"last_amended": "2019-08-15",
|
| 13 |
+
"in_force": "2019-08-15",
|
| 14 |
+
"status": "in force",
|
| 15 |
+
"current_to": "2024-12-15",
|
| 16 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-1.html",
|
| 17 |
+
"id": "P-19.32-s1",
|
| 18 |
+
"text": "1 This Act may be cited as the Preclearance Act, 2016.",
|
| 19 |
+
"citation": "Preclearance Act, s. 1"
|
| 20 |
+
},
|
| 21 |
+
{
|
| 22 |
+
"act_code": "P-19.32",
|
| 23 |
+
"act_short": "Preclearance Act",
|
| 24 |
+
"act_name": "Preclearance Act, 2016",
|
| 25 |
+
"section": "2",
|
| 26 |
+
"marginal_note": "Definitions",
|
| 27 |
+
"part": "",
|
| 28 |
+
"division": "",
|
| 29 |
+
"heading": "Interpretation and Application",
|
| 30 |
+
"history": "",
|
| 31 |
+
"last_amended": "2019-08-15",
|
| 32 |
+
"in_force": "2019-08-15",
|
| 33 |
+
"status": "in force",
|
| 34 |
+
"current_to": "2024-12-15",
|
| 35 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-2.html",
|
| 36 |
+
"id": "P-19.32-s2",
|
| 37 |
+
"text": "2\n(1) The following definitions apply in this Act.\nAgreement means the Agreement on Land, Rail, Marine, and Air Transport Preclearance between the Government of Canada and the Government of United States of America, done at Washington on March 16, 2015. (Accord)\ngoods includes\n(a) currency and monetary instruments; and\n(b) for greater certainty, animals and plants and their products, conveyances and any document in any form. (biens)\nMinister means, in relation to section 6, 7 or 8, subsection 11(2) or 34(2), section 41 or 45 or subsection 59(1), a Minister designated under subsection 4(2) for the purpose of that provision or, in the absence of such a designation, the Minister who is responsible for this Act. (ministre)\n(2) [For greater certainty] For greater certainty, travellers or goods en route towards the United States or Canada on their way to another country are, for the purposes of this Act, bound for the United States or Canada, as the case may be.\n(3) [Definition of Act of Parliament] For greater certainty, in this Act Act of Parliament means an Act of the Parliament of Canada.",
|
| 38 |
+
"citation": "Preclearance Act, s. 2"
|
| 39 |
+
},
|
| 40 |
+
{
|
| 41 |
+
"act_code": "P-19.32",
|
| 42 |
+
"act_short": "Preclearance Act",
|
| 43 |
+
"act_name": "Preclearance Act, 2016",
|
| 44 |
+
"section": "3",
|
| 45 |
+
"marginal_note": "Binding on Her Majesty",
|
| 46 |
+
"part": "",
|
| 47 |
+
"division": "",
|
| 48 |
+
"heading": "Interpretation and Application",
|
| 49 |
+
"history": "",
|
| 50 |
+
"last_amended": "2019-08-15",
|
| 51 |
+
"in_force": "2019-08-15",
|
| 52 |
+
"status": "in force",
|
| 53 |
+
"current_to": "2024-12-15",
|
| 54 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-3.html",
|
| 55 |
+
"id": "P-19.32-s3",
|
| 56 |
+
"text": "3 This Act is binding on Her Majesty in right of Canada or a province.",
|
| 57 |
+
"citation": "Preclearance Act, s. 3"
|
| 58 |
+
},
|
| 59 |
+
{
|
| 60 |
+
"act_code": "P-19.32",
|
| 61 |
+
"act_short": "Preclearance Act",
|
| 62 |
+
"act_name": "Preclearance Act, 2016",
|
| 63 |
+
"section": "4",
|
| 64 |
+
"marginal_note": "Act",
|
| 65 |
+
"part": "",
|
| 66 |
+
"division": "",
|
| 67 |
+
"heading": "Designation of Ministers",
|
| 68 |
+
"history": "",
|
| 69 |
+
"last_amended": "2019-08-15",
|
| 70 |
+
"in_force": "2019-08-15",
|
| 71 |
+
"status": "in force",
|
| 72 |
+
"current_to": "2024-12-15",
|
| 73 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-4.html",
|
| 74 |
+
"id": "P-19.32-s4",
|
| 75 |
+
"text": "4\n(1) The Governor in Council may, by order, designate a federal Minister as the Minister responsible for this Act.\n(2) [Provision] The Governor in Council may, by order, designate one or more federal Ministers as the Minister or Ministers for the purpose of section 6, 7 or 8, subsection 11(2) or 34(2), section 41 or 45 or subsection 59(1).\n(3) [More than one Minister] If more than one Minister is designated under subsection (2) for the purpose of a provision, the Governor in Council must, by order, specify the circumstances in which each Minister is to exercise the powers and perform the duties or functions set out in the provision.",
|
| 76 |
+
"citation": "Preclearance Act, s. 4"
|
| 77 |
+
},
|
| 78 |
+
{
|
| 79 |
+
"act_code": "P-19.32",
|
| 80 |
+
"act_short": "Preclearance Act",
|
| 81 |
+
"act_name": "Preclearance Act, 2016",
|
| 82 |
+
"section": "5",
|
| 83 |
+
"marginal_note": "Definitions",
|
| 84 |
+
"part": "PART 1 - Preclearance by the United States in Canada",
|
| 85 |
+
"division": "",
|
| 86 |
+
"heading": "Definitions",
|
| 87 |
+
"history": "",
|
| 88 |
+
"last_amended": "2019-08-15",
|
| 89 |
+
"in_force": "2019-08-15",
|
| 90 |
+
"status": "in force",
|
| 91 |
+
"current_to": "2024-12-15",
|
| 92 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-5.html",
|
| 93 |
+
"id": "P-19.32-s5",
|
| 94 |
+
"text": "5 The following definitions apply in this Part.\nbiometric information means information that is derived from a person’s measurable physical characteristics. (renseignements biométriques)\nborder services officer means a person who is\n(a) employed by the Canada Border Services Agency in the administration or enforcement of the Customs Act, the Customs Tariff or the Special Import Measures Act;\n(b) designated under subsection 9(2) of the Canada Border Services Agency Act; or\n(c) designated or authorized under section 6 of the Immigration and Refugee Protection Act. (agent des services frontaliers)\nfacility means, except in the case of a medical facility, a facility in a preclearance area or preclearance perimeter or a facility in which there is a preclearance area or preclearance perimeter. (installation)\nfrisk search means a search by hand or technical means of a person’s clothed body. (fouille par palpation)\npreclearance means the exercise of powers and the performance of duties and functions under the laws of the United States by a preclearance officer under section 10. (précontrôle)\npreclearance officer means a person authorized by the Government of the United States to conduct preclearance in Canada. (contrôleur)\nstrip search means a visual inspection of a person’s unclothed or partially clothed body. (fouille à nu)",
|
| 95 |
+
"citation": "Preclearance Act, s. 5"
|
| 96 |
+
},
|
| 97 |
+
{
|
| 98 |
+
"act_code": "P-19.32",
|
| 99 |
+
"act_short": "Preclearance Act",
|
| 100 |
+
"act_name": "Preclearance Act, 2016",
|
| 101 |
+
"section": "6",
|
| 102 |
+
"marginal_note": "Preclearance area",
|
| 103 |
+
"part": "PART 1 - Preclearance by the United States in Canada",
|
| 104 |
+
"division": "",
|
| 105 |
+
"heading": "Designation of Preclearance Areas and Preclearance Perimeters",
|
| 106 |
+
"history": "",
|
| 107 |
+
"last_amended": "2019-08-15",
|
| 108 |
+
"in_force": "2019-08-15",
|
| 109 |
+
"status": "in force",
|
| 110 |
+
"current_to": "2024-12-15",
|
| 111 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-6.html",
|
| 112 |
+
"id": "P-19.32-s6",
|
| 113 |
+
"text": "6\n(1) The Minister may designate an area in a location set out in the schedule as a preclearance area. The Minister may provide that the designated area is a preclearance area only during specified periods and in specified circumstances.\n(2) [Other preclearance areas] If the Minister has designated a preclearance area under subsection (1) and a conveyance — that is intended to be used to transport travellers or goods that are undergoing preclearance — is stationed in preparation for departure to the United States such that all or part of the conveyance is outside that preclearance area, the following are also preclearance areas during the period in which the conveyance is so stationed:\n(a) the conveyance;\n(b) a corridor between the preclearance area designated under subsection (1) and the conveyance; and\n(c) any other conveyance that is used to transport travellers or goods between the preclearance area designated under subsection (1) and the conveyance.",
|
| 114 |
+
"citation": "Preclearance Act, s. 6"
|
| 115 |
+
},
|
| 116 |
+
{
|
| 117 |
+
"act_code": "P-19.32",
|
| 118 |
+
"act_short": "Preclearance Act",
|
| 119 |
+
"act_name": "Preclearance Act, 2016",
|
| 120 |
+
"section": "7",
|
| 121 |
+
"marginal_note": "Preclearance perimeter",
|
| 122 |
+
"part": "PART 1 - Preclearance by the United States in Canada",
|
| 123 |
+
"division": "",
|
| 124 |
+
"heading": "Designation of Preclearance Areas and Preclearance Perimeters",
|
| 125 |
+
"history": "",
|
| 126 |
+
"last_amended": "2019-08-15",
|
| 127 |
+
"in_force": "2019-08-15",
|
| 128 |
+
"status": "in force",
|
| 129 |
+
"current_to": "2024-12-15",
|
| 130 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-7.html",
|
| 131 |
+
"id": "P-19.32-s7",
|
| 132 |
+
"text": "7 The Minister may designate as a preclearance perimeter an area that is adjacent to where a conveyance referred to in paragraph 6(2)(a) will be stationed in preparation for departure to the United States, but the designated area is only a preclearance perimeter during the period in which such a conveyance is so stationed.",
|
| 133 |
+
"citation": "Preclearance Act, s. 7"
|
| 134 |
+
},
|
| 135 |
+
{
|
| 136 |
+
"act_code": "P-19.32",
|
| 137 |
+
"act_short": "Preclearance Act",
|
| 138 |
+
"act_name": "Preclearance Act, 2016",
|
| 139 |
+
"section": "8",
|
| 140 |
+
"marginal_note": "Modify or cancel",
|
| 141 |
+
"part": "PART 1 - Preclearance by the United States in Canada",
|
| 142 |
+
"division": "",
|
| 143 |
+
"heading": "Designation of Preclearance Areas and Preclearance Perimeters",
|
| 144 |
+
"history": "",
|
| 145 |
+
"last_amended": "2019-08-15",
|
| 146 |
+
"in_force": "2019-08-15",
|
| 147 |
+
"status": "in force",
|
| 148 |
+
"current_to": "2024-12-15",
|
| 149 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-8.html",
|
| 150 |
+
"id": "P-19.32-s8",
|
| 151 |
+
"text": "8 The Minister may modify or cancel anything that he or she has done under subsection 6(1) or section 7.",
|
| 152 |
+
"citation": "Preclearance Act, s. 8"
|
| 153 |
+
},
|
| 154 |
+
{
|
| 155 |
+
"act_code": "P-19.32",
|
| 156 |
+
"act_short": "Preclearance Act",
|
| 157 |
+
"act_name": "Preclearance Act, 2016",
|
| 158 |
+
"section": "9",
|
| 159 |
+
"marginal_note": "Canadian law",
|
| 160 |
+
"part": "PART 1 - Preclearance by the United States in Canada",
|
| 161 |
+
"division": "",
|
| 162 |
+
"heading": "Designation of Preclearance Areas and Preclearance Perimeters",
|
| 163 |
+
"history": "",
|
| 164 |
+
"last_amended": "2019-08-15",
|
| 165 |
+
"in_force": "2019-08-15",
|
| 166 |
+
"status": "in force",
|
| 167 |
+
"current_to": "2024-12-15",
|
| 168 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-9.html",
|
| 169 |
+
"id": "P-19.32-s9",
|
| 170 |
+
"text": "9 For greater certainty, Canadian law applies, and may be administered and enforced, in preclearance areas and preclearance perimeters.",
|
| 171 |
+
"citation": "Preclearance Act, s. 9"
|
| 172 |
+
},
|
| 173 |
+
{
|
| 174 |
+
"act_code": "P-19.32",
|
| 175 |
+
"act_short": "Preclearance Act",
|
| 176 |
+
"act_name": "Preclearance Act, 2016",
|
| 177 |
+
"section": "10",
|
| 178 |
+
"marginal_note": "Preclearance powers, duties and functions",
|
| 179 |
+
"part": "PART 1 - Preclearance by the United States in Canada",
|
| 180 |
+
"division": "",
|
| 181 |
+
"heading": "Preclearance",
|
| 182 |
+
"history": "",
|
| 183 |
+
"last_amended": "2019-08-15",
|
| 184 |
+
"in_force": "2019-08-15",
|
| 185 |
+
"status": "in force",
|
| 186 |
+
"current_to": "2024-12-15",
|
| 187 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-10.html",
|
| 188 |
+
"id": "P-19.32-s10",
|
| 189 |
+
"text": "10\n(1) Subject to subsection (2), a preclearance officer may, in a preclearance area or preclearance perimeter, exercise the powers and perform the duties and functions conferred on them under the laws of the United States on importation of goods, immigration, agriculture and public health and safety, in order to determine whether a traveller or goods bound for the United States is or are admissible into that country and, if applicable, to permit them to enter that country.\n(2) [Limitation] A preclearance officer is not permitted to exercise any powers of questioning or interrogation, examination, search, seizure, forfeiture, detention or arrest that are conferred under the laws of the United States.",
|
| 190 |
+
"citation": "Preclearance Act, s. 10"
|
| 191 |
+
},
|
| 192 |
+
{
|
| 193 |
+
"act_code": "P-19.32",
|
| 194 |
+
"act_short": "Preclearance Act",
|
| 195 |
+
"act_name": "Preclearance Act, 2016",
|
| 196 |
+
"section": "11",
|
| 197 |
+
"marginal_note": "Compliance with Canadian law",
|
| 198 |
+
"part": "PART 1 - Preclearance by the United States in Canada",
|
| 199 |
+
"division": "",
|
| 200 |
+
"heading": "Preclearance",
|
| 201 |
+
"history": "",
|
| 202 |
+
"last_amended": "2019-08-15",
|
| 203 |
+
"in_force": "2019-08-15",
|
| 204 |
+
"status": "in force",
|
| 205 |
+
"current_to": "2024-12-15",
|
| 206 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-11.html",
|
| 207 |
+
"id": "P-19.32-s11",
|
| 208 |
+
"text": "11\n(1) A preclearance officer must exercise their powers and perform their duties and functions under this Act in accordance with Canadian law, including the Canadian Charter of Rights and Freedoms, the Canadian Bill of Rights and the Canadian Human Rights Act.\n(2) [Training — preclearance officer] The Minister must, in accordance with paragraph 2 of Article IX of the Agreement, provide every preclearance officer with training on the Canadian law that applies to the exercise of the preclearance officer’s powers and the performance of their duties and functions under this Act.",
|
| 209 |
+
"citation": "Preclearance Act, s. 11"
|
| 210 |
+
},
|
| 211 |
+
{
|
| 212 |
+
"act_code": "P-19.32",
|
| 213 |
+
"act_short": "Preclearance Act",
|
| 214 |
+
"act_name": "Preclearance Act, 2016",
|
| 215 |
+
"section": "12",
|
| 216 |
+
"marginal_note": "Duties, taxes and fees",
|
| 217 |
+
"part": "PART 1 - Preclearance by the United States in Canada",
|
| 218 |
+
"division": "",
|
| 219 |
+
"heading": "Preclearance",
|
| 220 |
+
"history": "",
|
| 221 |
+
"last_amended": "2019-08-15",
|
| 222 |
+
"in_force": "2019-08-15",
|
| 223 |
+
"status": "in force",
|
| 224 |
+
"current_to": "2024-12-15",
|
| 225 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-12.html",
|
| 226 |
+
"id": "P-19.32-s12",
|
| 227 |
+
"text": "12\n(1) For greater certainty, in the course of preclearing travellers and goods, a preclearance officer may collect duties, taxes and fees in accordance with the laws of the United States on importation of goods, immigration, agriculture and public health and safety.\n(2) [Penalties or sanctions] For greater certainty, in the course of preclearing travellers and goods, a preclearance officer may impose administrative monetary penalties or other civil sanctions in accordance with those laws.\n(3) [Exception — Canadian prosecution] However, no such penalty or other sanction is to be imposed if a prosecution for an offence under an Act of Parliament is instituted in Canada with respect to the act or omission that would give rise to it. If such a prosecution is instituted after a penalty or sanction has been imposed, the penalty or sanction is a nullity and any payment in respect of it must be reimbursed.",
|
| 228 |
+
"citation": "Preclearance Act, s. 12"
|
| 229 |
+
},
|
| 230 |
+
{
|
| 231 |
+
"act_code": "P-19.32",
|
| 232 |
+
"act_short": "Preclearance Act",
|
| 233 |
+
"act_name": "Preclearance Act, 2016",
|
| 234 |
+
"section": "13",
|
| 235 |
+
"marginal_note": "Frisk search for dangerous thing",
|
| 236 |
+
"part": "PART 1 - Preclearance by the United States in Canada",
|
| 237 |
+
"division": "",
|
| 238 |
+
"heading": "Other Powers and Justification",
|
| 239 |
+
"history": "",
|
| 240 |
+
"last_amended": "2019-08-15",
|
| 241 |
+
"in_force": "2019-08-15",
|
| 242 |
+
"status": "in force",
|
| 243 |
+
"current_to": "2024-12-15",
|
| 244 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-13.html",
|
| 245 |
+
"id": "P-19.32-s13",
|
| 246 |
+
"text": "13\n(1) A preclearance officer may, in a preclearance area or preclearance perimeter, conduct a frisk search of a person if the officer has reasonable grounds to suspect that the person has on their person anything that would present a danger to human life or safety.\n(2) [Power to detain things] The preclearance officer may detain anything found during the search that would present a danger to human life or safety.",
|
| 247 |
+
"citation": "Preclearance Act, s. 13"
|
| 248 |
+
},
|
| 249 |
+
{
|
| 250 |
+
"act_code": "P-19.32",
|
| 251 |
+
"act_short": "Preclearance Act",
|
| 252 |
+
"act_name": "Preclearance Act, 2016",
|
| 253 |
+
"section": "14",
|
| 254 |
+
"marginal_note": "Detention — offence",
|
| 255 |
+
"part": "PART 1 - Preclearance by the United States in Canada",
|
| 256 |
+
"division": "",
|
| 257 |
+
"heading": "Other Powers and Justification",
|
| 258 |
+
"history": "",
|
| 259 |
+
"last_amended": "2019-08-15",
|
| 260 |
+
"in_force": "2019-08-15",
|
| 261 |
+
"status": "in force",
|
| 262 |
+
"current_to": "2024-12-15",
|
| 263 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-14.html",
|
| 264 |
+
"id": "P-19.32-s14",
|
| 265 |
+
"text": "14\n(1) If a preclearance officer has reasonable grounds to believe that a person has committed an offence under an Act of Parliament, the officer may, in a preclearance area or preclearance perimeter,\n(a) detain the person; and\n(b) detain any goods they have on their person and any goods under their control, if the goods may be evidence of the offence.\n(2) [Delivery] The preclearance officer must, as soon as feasible, deliver the person and any detained goods into the custody of a police officer or border services officer.",
|
| 266 |
+
"citation": "Preclearance Act, s. 14"
|
| 267 |
+
},
|
| 268 |
+
{
|
| 269 |
+
"act_code": "P-19.32",
|
| 270 |
+
"act_short": "Preclearance Act",
|
| 271 |
+
"act_name": "Preclearance Act, 2016",
|
| 272 |
+
"section": "15",
|
| 273 |
+
"marginal_note": "Detention — public health",
|
| 274 |
+
"part": "PART 1 - Preclearance by the United States in Canada",
|
| 275 |
+
"division": "",
|
| 276 |
+
"heading": "Other Powers and Justification",
|
| 277 |
+
"history": "",
|
| 278 |
+
"last_amended": "2019-08-15",
|
| 279 |
+
"in_force": "2019-08-15",
|
| 280 |
+
"status": "in force",
|
| 281 |
+
"current_to": "2024-12-15",
|
| 282 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-15.html",
|
| 283 |
+
"id": "P-19.32-s15",
|
| 284 |
+
"text": "15\n(1) If a preclearance officer has reasonable grounds to believe that a traveller bound for the United States poses a risk of significant harm to public health, the officer may, in a preclearance area or preclearance perimeter, detain the traveller.\n(2) [Delivery] The preclearance officer must, as soon as feasible, deliver the traveller into the custody of a police officer, a border services officer or a person designated as a quarantine officer under subsection 5(2) of the Quarantine Act.",
|
| 285 |
+
"citation": "Preclearance Act, s. 15"
|
| 286 |
+
},
|
| 287 |
+
{
|
| 288 |
+
"act_code": "P-19.32",
|
| 289 |
+
"act_short": "Preclearance Act",
|
| 290 |
+
"act_name": "Preclearance Act, 2016",
|
| 291 |
+
"section": "16",
|
| 292 |
+
"marginal_note": "Justification",
|
| 293 |
+
"part": "PART 1 - Preclearance by the United States in Canada",
|
| 294 |
+
"division": "",
|
| 295 |
+
"heading": "Other Powers and Justification",
|
| 296 |
+
"history": "",
|
| 297 |
+
"last_amended": "2019-08-15",
|
| 298 |
+
"in_force": "2019-08-15",
|
| 299 |
+
"status": "in force",
|
| 300 |
+
"current_to": "2024-12-15",
|
| 301 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-16.html",
|
| 302 |
+
"id": "P-19.32-s16",
|
| 303 |
+
"text": "16\n(1) A preclearance officer is, if they act on reasonable grounds, justified in doing what they are required or authorized to do under this Act and in using as much force as is necessary for that purpose.\n(2) [Limitation] However, a preclearance officer is not justified in using force that is intended or is likely to cause death or grievous bodily harm unless the officer has reasonable grounds to believe that it is necessary for self-preservation or the preservation of anyone under the officer’s protection from death or grievous bodily harm.",
|
| 304 |
+
"citation": "Preclearance Act, s. 16"
|
| 305 |
+
},
|
| 306 |
+
{
|
| 307 |
+
"act_code": "P-19.32",
|
| 308 |
+
"act_short": "Preclearance Act",
|
| 309 |
+
"act_name": "Preclearance Act, 2016",
|
| 310 |
+
"section": "17",
|
| 311 |
+
"marginal_note": "Limited access",
|
| 312 |
+
"part": "PART 1 - Preclearance by the United States in Canada",
|
| 313 |
+
"division": "",
|
| 314 |
+
"heading": "Access",
|
| 315 |
+
"history": "",
|
| 316 |
+
"last_amended": "2019-08-15",
|
| 317 |
+
"in_force": "2019-08-15",
|
| 318 |
+
"status": "in force",
|
| 319 |
+
"current_to": "2024-12-15",
|
| 320 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-17.html",
|
| 321 |
+
"id": "P-19.32-s17",
|
| 322 |
+
"text": "17 Only the following persons may enter a preclearance area:\n(a) travellers bound for the United States;\n(b) preclearance officers;\n(c) police officers and border services officers, for the purposes of exercising powers and performing duties and functions under this Part;\n(d) persons who are authorized by the Minister under section 45 or by regulation; and\n(e) subject to any regulations, persons who are authorized by the operator of a facility.",
|
| 323 |
+
"citation": "Preclearance Act, s. 17"
|
| 324 |
+
},
|
| 325 |
+
{
|
| 326 |
+
"act_code": "P-19.32",
|
| 327 |
+
"act_short": "Preclearance Act",
|
| 328 |
+
"act_name": "Preclearance Act, 2016",
|
| 329 |
+
"section": "18",
|
| 330 |
+
"marginal_note": "Traveller’s obligations",
|
| 331 |
+
"part": "PART 1 - Preclearance by the United States in Canada",
|
| 332 |
+
"division": "",
|
| 333 |
+
"heading": "Obligations",
|
| 334 |
+
"history": "",
|
| 335 |
+
"last_amended": "2019-08-15",
|
| 336 |
+
"in_force": "2019-08-15",
|
| 337 |
+
"status": "in force",
|
| 338 |
+
"current_to": "2024-12-15",
|
| 339 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-18.html",
|
| 340 |
+
"id": "P-19.32-s18",
|
| 341 |
+
"text": "18\n(1) A traveller bound for the United States who is in a preclearance area must\n(a) have in their possession identification that is issued by the federal government, a provincial or local government or a foreign government and that, except in the circumstances that may be prescribed by regulation, contains their photograph; and\n(b) on entry, immediately report to a preclearance officer.\n(2) [Obligations subject to withdrawal] Unless they withdraw from preclearance under section 29, a traveller bound for the United States who is in a preclearance area must\n(a) answer truthfully any question that is asked by a preclearance officer in accordance with this Act;\n(b) as directed by a preclearance officer, present any goods in the traveller’s possession, open or unpack the goods, and unload a conveyance for which they are responsible or open any part of it;\n(c) comply with any other direction given to the traveller in accordance with this Act by a preclearance officer, police officer or border services officer; and\n(d) comply with any other requirement that is prescribed by regulation.\n(3) [Obligations of other persons] A person, other than a traveller bound for the United States, who is in a preclearance area must comply with any requirement that is prescribed by regulation.",
|
| 342 |
+
"citation": "Preclearance Act, s. 18"
|
| 343 |
+
},
|
| 344 |
+
{
|
| 345 |
+
"act_code": "P-19.32",
|
| 346 |
+
"act_short": "Preclearance Act",
|
| 347 |
+
"act_name": "Preclearance Act, 2016",
|
| 348 |
+
"section": "19",
|
| 349 |
+
"marginal_note": "Only in preclearance area",
|
| 350 |
+
"part": "PART 1 - Preclearance by the United States in Canada",
|
| 351 |
+
"division": "",
|
| 352 |
+
"heading": "Powers, Duties and Functions",
|
| 353 |
+
"history": "",
|
| 354 |
+
"last_amended": "2019-08-15",
|
| 355 |
+
"in_force": "2019-08-15",
|
| 356 |
+
"status": "in force",
|
| 357 |
+
"current_to": "2024-12-15",
|
| 358 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-19.html",
|
| 359 |
+
"id": "P-19.32-s19",
|
| 360 |
+
"text": "19 A preclearance officer may exercise the powers, and perform the duties and functions, set out in sections 20 to 26 only in a preclearance area.",
|
| 361 |
+
"citation": "Preclearance Act, s. 19"
|
| 362 |
+
},
|
| 363 |
+
{
|
| 364 |
+
"act_code": "P-19.32",
|
| 365 |
+
"act_short": "Preclearance Act",
|
| 366 |
+
"act_name": "Preclearance Act, 2016",
|
| 367 |
+
"section": "20",
|
| 368 |
+
"marginal_note": "General powers",
|
| 369 |
+
"part": "PART 1 - Preclearance by the United States in Canada",
|
| 370 |
+
"division": "",
|
| 371 |
+
"heading": "Powers, Duties and Functions",
|
| 372 |
+
"history": "",
|
| 373 |
+
"last_amended": "2019-08-15",
|
| 374 |
+
"in_force": "2019-08-15",
|
| 375 |
+
"status": "in force",
|
| 376 |
+
"current_to": "2024-12-15",
|
| 377 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-20.html",
|
| 378 |
+
"id": "P-19.32-s20",
|
| 379 |
+
"text": "20\n(1) A preclearance officer may, for the purpose of conducting preclearance,\n(a) question a traveller bound for the United States;\n(b) collect information from a traveller bound for the United States;\n(c) examine, search and detain goods bound for the United States, including by taking samples of the goods in reasonable amounts;\n(d) direct a person to report to a preclearance officer, identify themselves, and state their reason for being in a preclearance area; and\n(e) direct a traveller, or a person not authorized to be in a preclearance area, to leave a preclearance area.\n(2) [Biometric information] In the course of conducting preclearance, a preclearance officer may, for the purpose of verifying the identity of a traveller bound for the United States, collect biometric information from the traveller, other than from the traveller’s bodily substances. However, the officer is not permitted to collect biometric information unless notification that travellers may withdraw from preclearance is provided in the preclearance area, through signage or other means of communication.",
|
| 380 |
+
"citation": "Preclearance Act, s. 20"
|
| 381 |
+
},
|
| 382 |
+
{
|
| 383 |
+
"act_code": "P-19.32",
|
| 384 |
+
"act_short": "Preclearance Act",
|
| 385 |
+
"act_name": "Preclearance Act, 2016",
|
| 386 |
+
"section": "21",
|
| 387 |
+
"marginal_note": "Frisk search — concealed goods",
|
| 388 |
+
"part": "PART 1 - Preclearance by the United States in Canada",
|
| 389 |
+
"division": "",
|
| 390 |
+
"heading": "Powers, Duties and Functions",
|
| 391 |
+
"history": "",
|
| 392 |
+
"last_amended": "2019-08-15",
|
| 393 |
+
"in_force": "2019-08-15",
|
| 394 |
+
"status": "in force",
|
| 395 |
+
"current_to": "2024-12-15",
|
| 396 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-21.html",
|
| 397 |
+
"id": "P-19.32-s21",
|
| 398 |
+
"text": "21 A preclearance officer may, for the purpose of conducting preclearance, conduct a frisk search of a traveller bound for the United States if the officer has reasonable grounds to suspect that the traveller has on their person concealed goods.",
|
| 399 |
+
"citation": "Preclearance Act, s. 21"
|
| 400 |
+
},
|
| 401 |
+
{
|
| 402 |
+
"act_code": "P-19.32",
|
| 403 |
+
"act_short": "Preclearance Act",
|
| 404 |
+
"act_name": "Preclearance Act, 2016",
|
| 405 |
+
"section": "22",
|
| 406 |
+
"marginal_note": "Strip search",
|
| 407 |
+
"part": "PART 1 - Preclearance by the United States in Canada",
|
| 408 |
+
"division": "",
|
| 409 |
+
"heading": "Powers, Duties and Functions",
|
| 410 |
+
"history": "",
|
| 411 |
+
"last_amended": "2019-08-15",
|
| 412 |
+
"in_force": "2019-08-15",
|
| 413 |
+
"status": "in force",
|
| 414 |
+
"current_to": "2024-12-15",
|
| 415 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-22.html",
|
| 416 |
+
"id": "P-19.32-s22",
|
| 417 |
+
"text": "22\n(1) A preclearance officer may, for the purpose of a strip search, detain a traveller bound for the United States if the officer has reasonable grounds to suspect that\n(a) the traveller has on their person concealed goods or anything that would present a danger to human life or safety; and\n(b) the search is necessary for the purpose of conducting preclearance.\n(2) [Request — border services officer] On detaining a traveller for the purpose of a strip search, the preclearance officer must immediately request that a border services officer conduct the search and advise of the grounds on which the traveller was detained.\n(3) [Strip search — border services officer] A border services officer may conduct the strip search if they have reasonable grounds to suspect that\n(a) the traveller has on their person concealed goods or anything that would present a danger to human life or safety; and\n(b) the strip search is necessary for the purpose of conducting preclearance.\n(4) [Strip search — preclearance officer] A preclearance officer may conduct the strip search, in a manner consistent with section 11, if they have reasonable grounds to suspect that the conditions under paragraphs (1)(a) and (b) are still met and if\n(a) a border services officer declines to conduct it;\n(b) the Canada Border Services Agency advises the preclearance officer that no border services officer is able to conduct the search within a reasonable time; or\n(c) the Agency and the preclearance officer agree that a border services officer is to conduct the search within a specified period, but no border services officer arrives within that period.\n(5) [Observation by preclearance officer] A strip search conducted under subsection (3) may be observed by a preclearance officer who is of the same sex as the traveller or, if no such preclearance officer is available, by any suitable person of the same sex as the traveller that a preclearance officer may authorize.",
|
| 418 |
+
"citation": "Preclearance Act, s. 22"
|
| 419 |
+
},
|
| 420 |
+
{
|
| 421 |
+
"act_code": "P-19.32",
|
| 422 |
+
"act_short": "Preclearance Act",
|
| 423 |
+
"act_name": "Preclearance Act, 2016",
|
| 424 |
+
"section": "23",
|
| 425 |
+
"marginal_note": "Monitored bowel movement",
|
| 426 |
+
"part": "PART 1 - Preclearance by the United States in Canada",
|
| 427 |
+
"division": "",
|
| 428 |
+
"heading": "Powers, Duties and Functions",
|
| 429 |
+
"history": "",
|
| 430 |
+
"last_amended": "2019-08-15",
|
| 431 |
+
"in_force": "2019-08-15",
|
| 432 |
+
"status": "in force",
|
| 433 |
+
"current_to": "2024-12-15",
|
| 434 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-23.html",
|
| 435 |
+
"id": "P-19.32-s23",
|
| 436 |
+
"text": "23\n(1) A preclearance officer may, for the purpose of a monitored bowel movement, detain a traveller bound for the United States if the officer has reasonable grounds to suspect that\n(a) the traveller is concealing goods inside their body;\n(b) the monitoring would permit the finding or retrieval of the goods; and\n(c) the monitoring is necessary for the purpose of conducting preclearance.\n(2) [Delivery to border services officer] On detaining a traveller for the purpose of a monitored bowel movement, the preclearance officer must deliver the traveller into the custody of a border services officer as soon as feasible and advise that officer of the grounds on which the traveller was detained.\n(3) [Monitoring by border services officer] A border services officer may conduct a monitored bowel movement if they have reasonable grounds to suspect that\n(a) the traveller is concealing goods inside their body;\n(b) the monitoring would permit the finding or retrieval of the goods; and\n(c) the monitoring is necessary for the purpose of conducting preclearance.",
|
| 437 |
+
"citation": "Preclearance Act, s. 23"
|
| 438 |
+
},
|
| 439 |
+
{
|
| 440 |
+
"act_code": "P-19.32",
|
| 441 |
+
"act_short": "Preclearance Act",
|
| 442 |
+
"act_name": "Preclearance Act, 2016",
|
| 443 |
+
"section": "24",
|
| 444 |
+
"marginal_note": "X-ray or body cavity search",
|
| 445 |
+
"part": "PART 1 - Preclearance by the United States in Canada",
|
| 446 |
+
"division": "",
|
| 447 |
+
"heading": "Powers, Duties and Functions",
|
| 448 |
+
"history": "",
|
| 449 |
+
"last_amended": "2019-08-15",
|
| 450 |
+
"in_force": "2019-08-15",
|
| 451 |
+
"status": "in force",
|
| 452 |
+
"current_to": "2024-12-15",
|
| 453 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-24.html",
|
| 454 |
+
"id": "P-19.32-s24",
|
| 455 |
+
"text": "24\n(1) A preclearance officer or border services officer may request that a traveller bound for the United States undergo an x-ray search or a body cavity search if the officer has reasonable grounds to suspect that\n(a) the traveller is concealing goods inside their body;\n(b) the x-ray search would permit the finding or identification of the goods or the body cavity search would permit the finding or retrieval of the goods; and\n(c) the search is necessary for the purpose of conducting preclearance.\n(2) [Traveller’s consent] Despite paragraph 18(2)(c), no x-ray search or body cavity search may be conducted unless the traveller consents.\n(3) [Transfer to medical facility] A police officer or border services officer may transfer the traveller to a medical facility for the search. A preclearance officer is not permitted to do so.\n(4) [Person conducting search] Only an x-ray technician may, with the consent of a physician, conduct an x-ray search, and only a physician may conduct a body cavity search.\n(5) [Danger to traveller’s health or safety] Regardless of whether the traveller consents to an x-ray search or body cavity search,\n(a) if a preclearance officer has reasonable grounds to suspect that there is a clear and substantial danger to the traveller’s health or safety, the officer may deliver the traveller to a police officer or border services officer so that the police officer or border services officer may transfer the traveller to a medical facility; and\n(b) if a border services officer has reasonable grounds to suspect that there is such a danger, the officer may transfer the traveller to a medical facility.",
|
| 456 |
+
"citation": "Preclearance Act, s. 24"
|
| 457 |
+
},
|
| 458 |
+
{
|
| 459 |
+
"act_code": "P-19.32",
|
| 460 |
+
"act_short": "Preclearance Act",
|
| 461 |
+
"act_name": "Preclearance Act, 2016",
|
| 462 |
+
"section": "25",
|
| 463 |
+
"marginal_note": "Right to be taken before senior officer",
|
| 464 |
+
"part": "PART 1 - Preclearance by the United States in Canada",
|
| 465 |
+
"division": "",
|
| 466 |
+
"heading": "Powers, Duties and Functions",
|
| 467 |
+
"history": "",
|
| 468 |
+
"last_amended": "2019-08-15",
|
| 469 |
+
"in_force": "2019-08-15",
|
| 470 |
+
"status": "in force",
|
| 471 |
+
"current_to": "2024-12-15",
|
| 472 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-25.html",
|
| 473 |
+
"id": "P-19.32-s25",
|
| 474 |
+
"text": "25\n(1) A preclearance officer or border services officer must, before conducting a search of a traveller under any of sections 21 to 23, inform the traveller of their right to be taken before the officer’s senior officer and, if the traveller requests it, must take the traveller before the senior officer.\n(2) [Senior officer’s agreement] If the traveller is brought before a senior officer, the search is permitted only if that officer agrees that the preclearance officer or border services officer, as the case may be, is authorized under the applicable section to conduct the search.",
|
| 475 |
+
"citation": "Preclearance Act, s. 25"
|
| 476 |
+
},
|
| 477 |
+
{
|
| 478 |
+
"act_code": "P-19.32",
|
| 479 |
+
"act_short": "Preclearance Act",
|
| 480 |
+
"act_name": "Preclearance Act, 2016",
|
| 481 |
+
"section": "26",
|
| 482 |
+
"marginal_note": "Search by officer of same sex",
|
| 483 |
+
"part": "PART 1 - Preclearance by the United States in Canada",
|
| 484 |
+
"division": "",
|
| 485 |
+
"heading": "Powers, Duties and Functions",
|
| 486 |
+
"history": "",
|
| 487 |
+
"last_amended": "2019-08-15",
|
| 488 |
+
"in_force": "2019-08-15",
|
| 489 |
+
"status": "in force",
|
| 490 |
+
"current_to": "2024-12-15",
|
| 491 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-26.html",
|
| 492 |
+
"id": "P-19.32-s26",
|
| 493 |
+
"text": "26\n(1) Neither a preclearance officer nor a border services officer is permitted to conduct a search under any of sections 21 to 23 of a person of the opposite sex. If no such officer of the same sex as the person is available, the officer may authorize any suitable person of the same sex to conduct the search.\n(2) [Appointed observer] A preclearance officer or border services officer may authorize a person of the same sex as the traveller being searched to observe a search under any of sections 21 to 23 that is conducted by the officer.",
|
| 494 |
+
"citation": "Preclearance Act, s. 26"
|
| 495 |
+
},
|
| 496 |
+
{
|
| 497 |
+
"act_code": "P-19.32",
|
| 498 |
+
"act_short": "Preclearance Act",
|
| 499 |
+
"act_name": "Preclearance Act, 2016",
|
| 500 |
+
"section": "26.1",
|
| 501 |
+
"marginal_note": "Situation referred to in certain provisions",
|
| 502 |
+
"part": "PART 1 - Preclearance by the United States in Canada",
|
| 503 |
+
"division": "",
|
| 504 |
+
"heading": "Powers, Duties and Functions",
|
| 505 |
+
"history": "",
|
| 506 |
+
"last_amended": "2019-08-15",
|
| 507 |
+
"in_force": "2019-08-15",
|
| 508 |
+
"status": "in force",
|
| 509 |
+
"current_to": "2024-12-15",
|
| 510 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-26.1.html",
|
| 511 |
+
"id": "P-19.32-s26.1",
|
| 512 |
+
"text": "26.1 Regardless of any applicable recourse, a traveller may, in a prescribed manner, inform the Canadian senior officials of the Preclearance Consultative Group established under the Agreement of any situation referred to in sections 22, 23 and 24, subsection 31(2) and section 32 of this Act.",
|
| 513 |
+
"citation": "Preclearance Act, s. 26.1"
|
| 514 |
+
},
|
| 515 |
+
{
|
| 516 |
+
"act_code": "P-19.32",
|
| 517 |
+
"act_short": "Preclearance Act",
|
| 518 |
+
"act_name": "Preclearance Act, 2016",
|
| 519 |
+
"section": "27",
|
| 520 |
+
"marginal_note": "Traveller’s obligations",
|
| 521 |
+
"part": "PART 1 - Preclearance by the United States in Canada",
|
| 522 |
+
"division": "",
|
| 523 |
+
"heading": "Preclearance Perimeter",
|
| 524 |
+
"history": "",
|
| 525 |
+
"last_amended": "2019-08-15",
|
| 526 |
+
"in_force": "2019-08-15",
|
| 527 |
+
"status": "in force",
|
| 528 |
+
"current_to": "2024-12-15",
|
| 529 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-27.html",
|
| 530 |
+
"id": "P-19.32-s27",
|
| 531 |
+
"text": "27\n(1) A traveller bound for the United States who is in a preclearance perimeter must comply with\n(a) any direction given to the traveller in accordance with this Act by a preclearance officer, police officer or border services officer; and\n(b) any requirement that is prescribed by regulation.\n(2) [Obligations of other persons] A person, other than a traveller bound for the United States, who is in a preclearance perimeter must\n(a) as directed by a preclearance officer, identify themselves and state their reason for being in the preclearance perimeter; and\n(b) comply with any requirement that is prescribed by regulation.",
|
| 532 |
+
"citation": "Preclearance Act, s. 27"
|
| 533 |
+
},
|
| 534 |
+
{
|
| 535 |
+
"act_code": "P-19.32",
|
| 536 |
+
"act_short": "Preclearance Act",
|
| 537 |
+
"act_name": "Preclearance Act, 2016",
|
| 538 |
+
"section": "28",
|
| 539 |
+
"marginal_note": "Powers of preclearance officer",
|
| 540 |
+
"part": "PART 1 - Preclearance by the United States in Canada",
|
| 541 |
+
"division": "",
|
| 542 |
+
"heading": "Preclearance Perimeter",
|
| 543 |
+
"history": "",
|
| 544 |
+
"last_amended": "2019-08-15",
|
| 545 |
+
"in_force": "2019-08-15",
|
| 546 |
+
"status": "in force",
|
| 547 |
+
"current_to": "2024-12-15",
|
| 548 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-28.html",
|
| 549 |
+
"id": "P-19.32-s28",
|
| 550 |
+
"text": "28 In a preclearance perimeter, a preclearance officer may, for the purpose of conducting preclearance or of maintaining the security of or control over the border between Canada and the United States,\n(a) direct that a person identify themselves and state their reason for being in the preclearance perimeter;\n(b) question a traveller bound for the United States;\n(c) direct a traveller bound for the United States to go to a preclearance area;\n(d) examine the exterior of a conveyance referred to in paragraph 6(2)(a);\n(e) examine, search and detain goods — including by taking samples of the goods in reasonable amounts — that are bound for the United States and that are to be loaded onto such a conveyance; and\n(f) return goods bound for the United States to a preclearance area, or direct a person with control of the goods to do so.",
|
| 551 |
+
"citation": "Preclearance Act, s. 28"
|
| 552 |
+
},
|
| 553 |
+
{
|
| 554 |
+
"act_code": "P-19.32",
|
| 555 |
+
"act_short": "Preclearance Act",
|
| 556 |
+
"act_name": "Preclearance Act, 2016",
|
| 557 |
+
"section": "29",
|
| 558 |
+
"marginal_note": "Traveller may withdraw from preclearance",
|
| 559 |
+
"part": "PART 1 - Preclearance by the United States in Canada",
|
| 560 |
+
"division": "",
|
| 561 |
+
"heading": "Withdrawal",
|
| 562 |
+
"history": "",
|
| 563 |
+
"last_amended": "2019-08-15",
|
| 564 |
+
"in_force": "2019-08-15",
|
| 565 |
+
"status": "in force",
|
| 566 |
+
"current_to": "2024-12-15",
|
| 567 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-29.html",
|
| 568 |
+
"id": "P-19.32-s29",
|
| 569 |
+
"text": "29 Unless they are detained under this Act, every traveller bound for the United States may withdraw from preclearance and, subject to section 30, may leave a preclearance area or preclearance perimeter without departing for the United States.",
|
| 570 |
+
"citation": "Preclearance Act, s. 29"
|
| 571 |
+
},
|
| 572 |
+
{
|
| 573 |
+
"act_code": "P-19.32",
|
| 574 |
+
"act_short": "Preclearance Act",
|
| 575 |
+
"act_name": "Preclearance Act, 2016",
|
| 576 |
+
"section": "30",
|
| 577 |
+
"marginal_note": "Traveller’s obligations",
|
| 578 |
+
"part": "PART 1 - Preclearance by the United States in Canada",
|
| 579 |
+
"division": "",
|
| 580 |
+
"heading": "Withdrawal",
|
| 581 |
+
"history": "",
|
| 582 |
+
"last_amended": "2019-08-15",
|
| 583 |
+
"in_force": "2019-08-15",
|
| 584 |
+
"status": "in force",
|
| 585 |
+
"current_to": "2024-12-15",
|
| 586 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-30.html",
|
| 587 |
+
"id": "P-19.32-s30",
|
| 588 |
+
"text": "30 A traveller who withdraws from preclearance must\n(a) answer truthfully any question asked by a preclearance officer under paragraph 31(2)(b) for the purpose of identifying the traveller or of determining their reason for withdrawing; and\n(b) comply with any other direction given by a preclearance officer in accordance with subsection 31(2).",
|
| 589 |
+
"citation": "Preclearance Act, s. 30"
|
| 590 |
+
},
|
| 591 |
+
{
|
| 592 |
+
"act_code": "P-19.32",
|
| 593 |
+
"act_short": "Preclearance Act",
|
| 594 |
+
"act_name": "Preclearance Act, 2016",
|
| 595 |
+
"section": "31",
|
| 596 |
+
"marginal_note": "No preclearance on withdrawal",
|
| 597 |
+
"part": "PART 1 - Preclearance by the United States in Canada",
|
| 598 |
+
"division": "",
|
| 599 |
+
"heading": "Withdrawal",
|
| 600 |
+
"history": "",
|
| 601 |
+
"last_amended": "2019-08-15",
|
| 602 |
+
"in_force": "2019-08-15",
|
| 603 |
+
"status": "in force",
|
| 604 |
+
"current_to": "2024-12-15",
|
| 605 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-31.html",
|
| 606 |
+
"id": "P-19.32-s31",
|
| 607 |
+
"text": "31\n(1) A preclearance officer is, after a traveller has indicated that he or she is withdrawing from preclearance, permitted to exercise only the powers, and perform only the duties and functions, under this section and sections 13 to 15 and 32 with respect to the traveller.\n(2) [Powers on withdrawal] A preclearance officer may, for the purpose of maintaining the security of or control over the border between Canada and the United States, exercise the following powers in a preclearance area or preclearance perimeter with respect to a traveller who is withdrawing from preclearance:\n(a) direct the traveller to identify themselves and to produce identification that contains their photograph and that is issued by the federal government, a provincial or local government or a foreign government;\n(b) question the traveller for the purposes of identifying them or determining their reason for withdrawing;\n(c) record and retain information obtained from the traveller under paragraph (a) or (b), including by making a copy of the traveller’s identification;\n(d) take and retain a photograph of the traveller, if the traveller has not produced identification that contains their photograph and allows their identity to be verified;\n(e) visually examine a conveyance used by the traveller and, if the conveyance transports goods on a commercial basis, open its cargo compartments to visually examine the contents;\n(f) examine, using means or devices that are minimally intrusive, a conveyance used by the traveller, without opening or entering it, if the preclearance officer has reasonable grounds to suspect that the traveller could compromise the security of or control over the border.\n(3) [Limitation] A preclearance officer may exercise the powers set out in subsection (2) only to the extent that doing so would not unreasonably delay the traveller’s withdrawal.",
|
| 608 |
+
"citation": "Preclearance Act, s. 31"
|
| 609 |
+
},
|
| 610 |
+
{
|
| 611 |
+
"act_code": "P-19.32",
|
| 612 |
+
"act_short": "Preclearance Act",
|
| 613 |
+
"act_name": "Preclearance Act, 2016",
|
| 614 |
+
"section": "32",
|
| 615 |
+
"marginal_note": "Powers — suspected offence",
|
| 616 |
+
"part": "PART 1 - Preclearance by the United States in Canada",
|
| 617 |
+
"division": "",
|
| 618 |
+
"heading": "Withdrawal",
|
| 619 |
+
"history": "",
|
| 620 |
+
"last_amended": "2019-08-15",
|
| 621 |
+
"in_force": "2019-08-15",
|
| 622 |
+
"status": "in force",
|
| 623 |
+
"current_to": "2024-12-15",
|
| 624 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-32.html",
|
| 625 |
+
"id": "P-19.32-s32",
|
| 626 |
+
"text": "32\n(1) If a preclearance officer has reasonable grounds to suspect that a traveller who is withdrawing from preclearance has committed an offence under an Act of Parliament, the officer may, for the purpose of maintaining the security of or control over the border, exercise any of the following powers in a preclearance area or preclearance perimeter:\n(a) direct the traveller to identify themselves and to produce identification that contains their photograph and that is issued by the federal government, a provincial or local government or a foreign government;\n(b) take and retain a photograph of the traveller, if the traveller has not produced identification that contains their photograph and allows their identity to be verified;\n(c) question the traveller;\n(d) collect information from the traveller;\n(e) examine, search and detain goods in the traveller’s possession or control, including by taking samples of the goods in reasonable amounts;\n(f) conduct a frisk search of the traveller, if the officer also has reasonable grounds to suspect that the traveller has on their person concealed goods; and\n(g) detain the traveller for the purpose of a strip search, if the officer also has reasonable grounds to suspect that\n(i) the traveller has on their person concealed goods or anything that would present a danger to human life or safety, and\n(ii) the search is necessary for the purpose of maintaining the security of or control over the border.\n(2) [Strip search] A strip search referred to in paragraph (1)(g) may be conducted only in accordance with subsections 22(2) to (5) and sections 25 and 26, with the reference to “paragraphs (1)(a) and (b)” in subsection 22(4) to be read as a reference to “subparagraphs 32(1)(g)(i) and (ii)”.\n(3) [Detention of traveller] The exercise of any of the powers set out in subsection (1) with respect to a traveller constitutes a detention of the traveller.",
|
| 627 |
+
"citation": "Preclearance Act, s. 32"
|
| 628 |
+
},
|
| 629 |
+
{
|
| 630 |
+
"act_code": "P-19.32",
|
| 631 |
+
"act_short": "Preclearance Act",
|
| 632 |
+
"act_name": "Preclearance Act, 2016",
|
| 633 |
+
"section": "33",
|
| 634 |
+
"marginal_note": "Limitation re information",
|
| 635 |
+
"part": "PART 1 - Preclearance by the United States in Canada",
|
| 636 |
+
"division": "",
|
| 637 |
+
"heading": "Withdrawal",
|
| 638 |
+
"history": "",
|
| 639 |
+
"last_amended": "2019-08-15",
|
| 640 |
+
"in_force": "2019-08-15",
|
| 641 |
+
"status": "in force",
|
| 642 |
+
"current_to": "2024-12-15",
|
| 643 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-33.html",
|
| 644 |
+
"id": "P-19.32-s33",
|
| 645 |
+
"text": "33\n(1) No person is permitted to disclose or use information obtained from a traveller after their withdrawal from preclearance except for the purpose of maintaining the security of or control over the border between Canada and the United States or as otherwise authorized by law.\n(2) [Limitation re biometric information] No person is permitted to\n(a) collect any biometric information in respect of a traveller after the traveller has indicated that they are withdrawing from preclearance;\n(b) use a photograph of the traveller obtained under paragraph 31(2)(d) or 32(1)(b) to produce biometric information; or\n(c) disclose such a photograph for the purpose of producing biometric information.",
|
| 646 |
+
"citation": "Preclearance Act, s. 33"
|
| 647 |
+
},
|
| 648 |
+
{
|
| 649 |
+
"act_code": "P-19.32",
|
| 650 |
+
"act_short": "Preclearance Act",
|
| 651 |
+
"act_name": "Preclearance Act, 2016",
|
| 652 |
+
"section": "34",
|
| 653 |
+
"marginal_note": "Preclearance officer",
|
| 654 |
+
"part": "PART 1 - Preclearance by the United States in Canada",
|
| 655 |
+
"division": "",
|
| 656 |
+
"heading": "Seizure and Forfeiture",
|
| 657 |
+
"history": "",
|
| 658 |
+
"last_amended": "2019-08-15",
|
| 659 |
+
"in_force": "2019-08-15",
|
| 660 |
+
"status": "in force",
|
| 661 |
+
"current_to": "2024-12-15",
|
| 662 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-34.html",
|
| 663 |
+
"id": "P-19.32-s34",
|
| 664 |
+
"text": "34\n(1) Subject to subsection (2), in a preclearance area or preclearance perimeter, a preclearance officer may seize, including as forfeit, or accept if they are abandoned, goods that are detained by a preclearance officer under paragraph 20(1)(c) or 28(e) to the extent, and in a manner, that is consistent with the laws of the United States on importation of goods, immigration, agriculture and public health and safety.\n(2) [Transfer to Canadian officer] If the Minister has provided notice that the importation into Canada, exportation from Canada, possession or handling of goods of the type that are detained contravenes Canadian law or if the preclearance officer suspects that the detained goods constitute evidence of an offence under Canadian law, the preclearance officer must transfer the detained goods to a person who is prescribed by regulation, if the goods are prescribed by regulation, or, if the goods are not so prescribed, to a police officer or border services officer.\n(3) [Return of goods to preclearance officer] If a person or officer to whom goods are transferred under subsection (2) subsequently returns the goods to a preclearance officer, the preclearance officer may seize them, including as forfeit, or accept them if they have been abandoned.\n(4) [Return or disposal of goods] Subject to any regulations, a preclearance officer may, to the extent and in a manner that is consistent with the laws referred to in subsection (1), return any goods that they have seized or dispose of any goods that they have seized or accepted.",
|
| 665 |
+
"citation": "Preclearance Act, s. 34"
|
| 666 |
+
},
|
| 667 |
+
{
|
| 668 |
+
"act_code": "P-19.32",
|
| 669 |
+
"act_short": "Preclearance Act",
|
| 670 |
+
"act_name": "Preclearance Act, 2016",
|
| 671 |
+
"section": "35",
|
| 672 |
+
"marginal_note": "Request for assistance — police officer",
|
| 673 |
+
"part": "PART 1 - Preclearance by the United States in Canada",
|
| 674 |
+
"division": "",
|
| 675 |
+
"heading": "Police Officers and Border Services Officers",
|
| 676 |
+
"history": "",
|
| 677 |
+
"last_amended": "2019-08-15",
|
| 678 |
+
"in_force": "2019-08-15",
|
| 679 |
+
"status": "in force",
|
| 680 |
+
"current_to": "2024-12-15",
|
| 681 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-35.html",
|
| 682 |
+
"id": "P-19.32-s35",
|
| 683 |
+
"text": "35\n(1) At the request of a preclearance officer, a police officer may, for the purpose of maintaining public peace,\n(a) remove from a preclearance area a traveller, or a person not authorized to be in the preclearance area, who refuses to comply with a direction given under paragraph 20(1)(e);\n(b) bring to a preclearance area a traveller who refuses to comply with a direction given under paragraph 28(c); and\n(c) assist the preclearance officer in the exercise of their powers, and performance of their duties and functions, under this Part.\n(2) [Border services officer] At the request of a preclearance officer, a border services officer may assist the preclearance officer in conducting a frisk search under section 13.\n(3) [Frisk search] A border services officer or police officer may conduct a frisk search of a traveller if they have reasonable grounds to suspect that the traveller has anything on their person that would present a danger to human life or safety in the following circumstances:\n(a) in the case of a border services officer, before conducting a strip search under subsection 22(3) or a monitored bowel movement under subsection 23(3);\n(b) in the case of either officer, before transferring the traveller to a medical facility under subsection 24(3).",
|
| 684 |
+
"citation": "Preclearance Act, s. 35"
|
| 685 |
+
},
|
| 686 |
+
{
|
| 687 |
+
"act_code": "P-19.32",
|
| 688 |
+
"act_short": "Preclearance Act",
|
| 689 |
+
"act_name": "Preclearance Act, 2016",
|
| 690 |
+
"section": "36",
|
| 691 |
+
"marginal_note": "Powers and obligations — peace officer",
|
| 692 |
+
"part": "PART 1 - Preclearance by the United States in Canada",
|
| 693 |
+
"division": "",
|
| 694 |
+
"heading": "Police Officers and Border Services Officers",
|
| 695 |
+
"history": "",
|
| 696 |
+
"last_amended": "2019-08-15",
|
| 697 |
+
"in_force": "2019-08-15",
|
| 698 |
+
"status": "in force",
|
| 699 |
+
"current_to": "2024-12-15",
|
| 700 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-36.html",
|
| 701 |
+
"id": "P-19.32-s36",
|
| 702 |
+
"text": "36\n(1) A border services officer who is designated under subsection 163.4(1) of the Customs Act and who is exercising powers or performing duties or functions under this Part has, in relation to an offence under any Act of Parliament, the powers and obligations of a peace officer under sections 495 to 497 of the Criminal Code, and subsections 495(3) and 497(3) of that Act apply to the officer as if he or she were a peace officer.\n(2) [Power to detain] The officer who arrests a person in the exercise of the powers conferred under subsection (1) may detain the person until the person can be delivered into the custody of a police officer.",
|
| 703 |
+
"citation": "Preclearance Act, s. 36"
|
| 704 |
+
},
|
| 705 |
+
{
|
| 706 |
+
"act_code": "P-19.32",
|
| 707 |
+
"act_short": "Preclearance Act",
|
| 708 |
+
"act_name": "Preclearance Act, 2016",
|
| 709 |
+
"section": "37",
|
| 710 |
+
"marginal_note": "False or deceptive statements",
|
| 711 |
+
"part": "PART 1 - Preclearance by the United States in Canada",
|
| 712 |
+
"division": "",
|
| 713 |
+
"heading": "Offences and Punishment",
|
| 714 |
+
"history": "",
|
| 715 |
+
"last_amended": "2019-08-15",
|
| 716 |
+
"in_force": "2019-08-15",
|
| 717 |
+
"status": "in force",
|
| 718 |
+
"current_to": "2024-12-15",
|
| 719 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-37.html",
|
| 720 |
+
"id": "P-19.32-s37",
|
| 721 |
+
"text": "37\n(1) Every person who makes an oral or written statement to a preclearance officer, police officer or border services officer, with respect to the preclearance of a person or any goods, that the person knows to be false or deceptive or to contain information that the person knows to be false or deceptive is guilty of an offence punishable on summary conviction and is liable to a maximum fine of $5,000.\n(2) [No imprisonment] Despite subsection 787(2) of the Criminal Code, a term of imprisonment is not to be imposed for default of payment of a fine imposed under subsection (1).",
|
| 722 |
+
"citation": "Preclearance Act, s. 37"
|
| 723 |
+
},
|
| 724 |
+
{
|
| 725 |
+
"act_code": "P-19.32",
|
| 726 |
+
"act_short": "Preclearance Act",
|
| 727 |
+
"act_name": "Preclearance Act, 2016",
|
| 728 |
+
"section": "38",
|
| 729 |
+
"marginal_note": "Obstruction of officer",
|
| 730 |
+
"part": "PART 1 - Preclearance by the United States in Canada",
|
| 731 |
+
"division": "",
|
| 732 |
+
"heading": "Offences and Punishment",
|
| 733 |
+
"history": "",
|
| 734 |
+
"last_amended": "2019-08-15",
|
| 735 |
+
"in_force": "2019-08-15",
|
| 736 |
+
"status": "in force",
|
| 737 |
+
"current_to": "2024-12-15",
|
| 738 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-38.html",
|
| 739 |
+
"id": "P-19.32-s38",
|
| 740 |
+
"text": "38 Every person who resists or wilfully obstructs a preclearance officer, police officer or border services officer in the exercise of the officer’s powers or the performance of their duties and functions under this Part, or a person lawfully acting in aid of such an officer,\n(a) is guilty of an indictable offence and liable to imprisonment for a term of not more than two years; or\n(b) is guilty of an offence punishable on summary conviction.",
|
| 741 |
+
"citation": "Preclearance Act, s. 38"
|
| 742 |
+
},
|
| 743 |
+
{
|
| 744 |
+
"act_code": "P-19.32",
|
| 745 |
+
"act_short": "Preclearance Act",
|
| 746 |
+
"act_name": "Preclearance Act, 2016",
|
| 747 |
+
"section": "39",
|
| 748 |
+
"marginal_note": "Claim against the United States",
|
| 749 |
+
"part": "PART 1 - Preclearance by the United States in Canada",
|
| 750 |
+
"division": "",
|
| 751 |
+
"heading": "Civil Liability and Immunity",
|
| 752 |
+
"history": "",
|
| 753 |
+
"last_amended": "2019-08-15",
|
| 754 |
+
"in_force": "2019-08-15",
|
| 755 |
+
"status": "in force",
|
| 756 |
+
"current_to": "2024-12-15",
|
| 757 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-39.html",
|
| 758 |
+
"id": "P-19.32-s39",
|
| 759 |
+
"text": "39\n(1) An action or other proceeding of a civil nature, in which the United States is not immune under the State Immunity Act from the jurisdiction of a court in Canada, may be brought against the United States in respect of anything that is, or is purported to be, done or omitted by a preclearance officer in the exercise of their powers or the performance of their duties and functions under this Part.\n(2) [Preclearance officer’s immunity] No action or other proceeding of a civil nature may be brought against a preclearance officer in respect of anything that is done or omitted in the exercise of their powers or the performance of their duties and functions under this Part.\n(3) [For greater certainty] For greater certainty, a preclearance officer is not a servant of the Crown for the purposes of the Crown Liability and Proceedings Act.",
|
| 760 |
+
"citation": "Preclearance Act, s. 39"
|
| 761 |
+
},
|
| 762 |
+
{
|
| 763 |
+
"act_code": "P-19.32",
|
| 764 |
+
"act_short": "Preclearance Act",
|
| 765 |
+
"act_name": "Preclearance Act, 2016",
|
| 766 |
+
"section": "40",
|
| 767 |
+
"marginal_note": "Decision not reviewable",
|
| 768 |
+
"part": "PART 1 - Preclearance by the United States in Canada",
|
| 769 |
+
"division": "",
|
| 770 |
+
"heading": "Civil Liability and Immunity",
|
| 771 |
+
"history": "",
|
| 772 |
+
"last_amended": "2019-08-15",
|
| 773 |
+
"in_force": "2019-08-15",
|
| 774 |
+
"status": "in force",
|
| 775 |
+
"current_to": "2024-12-15",
|
| 776 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-40.html",
|
| 777 |
+
"id": "P-19.32-s40",
|
| 778 |
+
"text": "40 No decision of a preclearance officer to refuse to conduct preclearance, or to refuse the admission of persons or goods into the United States in accordance with the laws of the United States, is subject to judicial review in Canada.",
|
| 779 |
+
"citation": "Preclearance Act, s. 40"
|
| 780 |
+
},
|
| 781 |
+
{
|
| 782 |
+
"act_code": "P-19.32",
|
| 783 |
+
"act_short": "Preclearance Act",
|
| 784 |
+
"act_name": "Preclearance Act, 2016",
|
| 785 |
+
"section": "41",
|
| 786 |
+
"marginal_note": "Reciprocity",
|
| 787 |
+
"part": "PART 1 - Preclearance by the United States in Canada",
|
| 788 |
+
"division": "",
|
| 789 |
+
"heading": "Civil Liability and Immunity",
|
| 790 |
+
"history": "",
|
| 791 |
+
"last_amended": "2019-08-15",
|
| 792 |
+
"in_force": "2019-08-15",
|
| 793 |
+
"status": "in force",
|
| 794 |
+
"current_to": "2024-12-15",
|
| 795 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-41.html",
|
| 796 |
+
"id": "P-19.32-s41",
|
| 797 |
+
"text": "41 The Governor in Council may, on the recommendation of the Minister, by order, restrict any immunity or privileges under section 39 or 40 with respect to an action or other proceeding of a civil nature if, in the opinion of the Governor in Council, the immunity or privileges exceed those accorded to Canada by the United States.",
|
| 798 |
+
"citation": "Preclearance Act, s. 41"
|
| 799 |
+
},
|
| 800 |
+
{
|
| 801 |
+
"act_code": "P-19.32",
|
| 802 |
+
"act_short": "Preclearance Act",
|
| 803 |
+
"act_name": "Preclearance Act, 2016",
|
| 804 |
+
"section": "42",
|
| 805 |
+
"marginal_note": "Request to third-party state",
|
| 806 |
+
"part": "PART 1 - Preclearance by the United States in Canada",
|
| 807 |
+
"division": "",
|
| 808 |
+
"heading": "Limitation on Requests for Extradition or Provisional Arrest",
|
| 809 |
+
"history": "",
|
| 810 |
+
"last_amended": "2019-08-15",
|
| 811 |
+
"in_force": "2019-08-15",
|
| 812 |
+
"status": "in force",
|
| 813 |
+
"current_to": "2024-12-15",
|
| 814 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-42.html",
|
| 815 |
+
"id": "P-19.32-s42",
|
| 816 |
+
"text": "42 No request under section 78 of the Extradition Act for the extradition or provisional arrest of a current or former preclearance officer may, without the consent of the Government of the United States, be made to a State or entity other than the United States with respect to an act or omission committed by the officer, if the Government of the United States has provided notice under paragraph 14 of Article X of the Agreement that it is exercising primary criminal jurisdiction over the act or omission.",
|
| 817 |
+
"citation": "Preclearance Act, s. 42"
|
| 818 |
+
},
|
| 819 |
+
{
|
| 820 |
+
"act_code": "P-19.32",
|
| 821 |
+
"act_short": "Preclearance Act",
|
| 822 |
+
"act_name": "Preclearance Act, 2016",
|
| 823 |
+
"section": "43",
|
| 824 |
+
"marginal_note": "Regulations",
|
| 825 |
+
"part": "PART 1 - Preclearance by the United States in Canada",
|
| 826 |
+
"division": "",
|
| 827 |
+
"heading": "Regulations and Orders",
|
| 828 |
+
"history": "",
|
| 829 |
+
"last_amended": "2019-08-15",
|
| 830 |
+
"in_force": "2019-08-15",
|
| 831 |
+
"status": "in force",
|
| 832 |
+
"current_to": "2024-12-15",
|
| 833 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-43.html",
|
| 834 |
+
"id": "P-19.32-s43",
|
| 835 |
+
"text": "43\n(1) The Governor in Council may make regulations for carrying out the purposes and provisions of this Part, including regulations\n(a) authorizing persons or classes of persons to enter a preclearance area and establishing conditions of entry for those persons;\n(b) imposing conditions on the exercise of the authority of the operator of a facility to authorize the entry of persons into a preclearance area under paragraph 17(e), or prohibiting the operator of a facility from authorizing a person to enter a preclearance area;\n(c) respecting obligations on the operator of a facility, including with respect to access of people and goods to preclearance areas and preclearance perimeters, the security of preclearance areas and preclearance perimeters, the demarcation of preclearance areas and preclearance perimeters, and signage or other means of communication with respect to preclearance areas and preclearance perimeters;\n(d) respecting the disposal of seized, forfeited or abandoned goods and the return of seized goods; and\n(e) prescribing anything that by this Part is to be prescribed by regulation.\n(2) [Different treatment] The regulations may distinguish between individual preclearance areas or individual preclearance perimeters and between classes of such areas or perimeters.",
|
| 836 |
+
"citation": "Preclearance Act, s. 43"
|
| 837 |
+
},
|
| 838 |
+
{
|
| 839 |
+
"act_code": "P-19.32",
|
| 840 |
+
"act_short": "Preclearance Act",
|
| 841 |
+
"act_name": "Preclearance Act, 2016",
|
| 842 |
+
"section": "44",
|
| 843 |
+
"marginal_note": "Amendment of schedule",
|
| 844 |
+
"part": "PART 1 - Preclearance by the United States in Canada",
|
| 845 |
+
"division": "",
|
| 846 |
+
"heading": "Regulations and Orders",
|
| 847 |
+
"history": "",
|
| 848 |
+
"last_amended": "2019-08-15",
|
| 849 |
+
"in_force": "2019-08-15",
|
| 850 |
+
"status": "in force",
|
| 851 |
+
"current_to": "2024-12-15",
|
| 852 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-44.html",
|
| 853 |
+
"id": "P-19.32-s44",
|
| 854 |
+
"text": "44 The Governor in Council may, by order, amend the schedule by adding, amending or deleting the reference to a location in which an area may be designated as a preclearance area or a preclearance perimeter.",
|
| 855 |
+
"citation": "Preclearance Act, s. 44"
|
| 856 |
+
},
|
| 857 |
+
{
|
| 858 |
+
"act_code": "P-19.32",
|
| 859 |
+
"act_short": "Preclearance Act",
|
| 860 |
+
"act_name": "Preclearance Act, 2016",
|
| 861 |
+
"section": "45",
|
| 862 |
+
"marginal_note": "Authorization — access",
|
| 863 |
+
"part": "PART 1 - Preclearance by the United States in Canada",
|
| 864 |
+
"division": "",
|
| 865 |
+
"heading": "Regulations and Orders",
|
| 866 |
+
"history": "",
|
| 867 |
+
"last_amended": "2019-08-15",
|
| 868 |
+
"in_force": "2019-08-15",
|
| 869 |
+
"status": "in force",
|
| 870 |
+
"current_to": "2024-12-15",
|
| 871 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-45.html",
|
| 872 |
+
"id": "P-19.32-s45",
|
| 873 |
+
"text": "45 The Minister may, by order, authorize a person who, or class of persons that, is not otherwise authorized to do so to enter a preclearance area and establish conditions of entry for those persons.",
|
| 874 |
+
"citation": "Preclearance Act, s. 45"
|
| 875 |
+
},
|
| 876 |
+
{
|
| 877 |
+
"act_code": "P-19.32",
|
| 878 |
+
"act_short": "Preclearance Act",
|
| 879 |
+
"act_name": "Preclearance Act, 2016",
|
| 880 |
+
"section": "46",
|
| 881 |
+
"marginal_note": "Definitions",
|
| 882 |
+
"part": "PART 2 - Preclearance by Canada in the United States",
|
| 883 |
+
"division": "",
|
| 884 |
+
"heading": "Definitions",
|
| 885 |
+
"history": "",
|
| 886 |
+
"last_amended": "2019-08-15",
|
| 887 |
+
"in_force": "2019-08-15",
|
| 888 |
+
"status": "in force",
|
| 889 |
+
"current_to": "2024-12-15",
|
| 890 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-46.html",
|
| 891 |
+
"id": "P-19.32-s46",
|
| 892 |
+
"text": "46 The following definitions apply in this Part.\nborder services officer means a person who is assigned to conduct preclearance in the United States and is\n(a) employed by the Canada Border Services Agency in the administration or enforcement of the Customs Act, the Customs Tariff or the Special Import Measures Act;\n(b) designated under subsection 9(2) of the Canada Border Services Agency Act; or\n(c) designated or authorized under section 6 of the Immigration and Refugee Protection Act. (agent des services frontaliers)\nother public officer means a person, other than a border services officer, who is designated or authorized to exercise powers or perform duties or functions under preclearance legislation described in paragraph (a) of the definition of that expression in this section, and who is assigned to conduct preclearance in the United States. (autre fonctionnaire)\npreclearance means the exercise of powers and the performance of duties and functions by a border services officer or other public officer under sections 47 to 51 and regulations made under paragraph 57(1)(a). (précontrôle)\npreclearance area means an area in the United States that is\n(a) designated by the Government of the United States as a preclearance area under the Agreement; and\n(b) designated as a customs office under section 5 of the Customs Act. (zone de précontrôle)\npreclearance legislation means\n(a) the provisions — of an Act of Parliament other than this Act, or of regulations made under such an Act — that apply in respect of the entry of persons or the importation of goods into Canada, including provisions relating to customs, agriculture or public health and safety; and\n(b) the provisions — of an Act of a provincial legislature, or of regulations made under such an Act — that authorize the collection by a border services officer of taxes, fees, mark-ups or other amounts.\nIt does not include any provision that creates an offence or any provision of the Immigration and Refugee Protection Act or its regulations. (législation relative au précontrôle)\npreclearance perimeter means an area in the United States that is\n(a) designated by the Government of the United States as a preclearance perimeter under the Agreement; and\n(b) designated as a customs office under section 5 of the Customs Act. (périmètre de précontrôle)",
|
| 893 |
+
"citation": "Preclearance Act, s. 46"
|
| 894 |
+
},
|
| 895 |
+
{
|
| 896 |
+
"act_code": "P-19.32",
|
| 897 |
+
"act_short": "Preclearance Act",
|
| 898 |
+
"act_name": "Preclearance Act, 2016",
|
| 899 |
+
"section": "47",
|
| 900 |
+
"marginal_note": "Application of preclearance legislation",
|
| 901 |
+
"part": "PART 2 - Preclearance by Canada in the United States",
|
| 902 |
+
"division": "",
|
| 903 |
+
"heading": "Preclearance",
|
| 904 |
+
"history": "",
|
| 905 |
+
"last_amended": "2019-08-15",
|
| 906 |
+
"in_force": "2019-08-15",
|
| 907 |
+
"status": "in force",
|
| 908 |
+
"current_to": "2024-12-15",
|
| 909 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-47.html",
|
| 910 |
+
"id": "P-19.32-s47",
|
| 911 |
+
"text": "47\n(1) Subject to the regulations, preclearance legislation applies to a traveller and goods bound for Canada in a preclearance area or preclearance perimeter as if the traveller had entered, and the goods had been imported into, Canada.\n(2) [Powers, duties and functions] Subject to section 49 and the regulations, a border services officer or other public officer may, in a preclearance area or preclearance perimeter, exercise the powers and perform the duties and functions that are conferred on the officer under preclearance legislation with respect to travellers and goods bound for Canada, as if the officer were in Canada.\n(3) [Refusal] A border services officer or other public officer may, in a preclearance area or preclearance perimeter, refuse to permit travellers to proceed, or goods to be taken, to Canada through the preclearance area or preclearance perimeter if the entry of the traveller, or the importation of the goods, into Canada does not comply with preclearance legislation.\n(4) [For greater certainty] For greater certainty, a border services officer or other public officer in a preclearance area or preclearance perimeter may, to the extent they are permitted to do so under the powers, duties and functions that are conferred on them under preclearance legislation,\n(a) subject to subsection 49(4), impose an administrative monetary penalty or other civil sanction in accordance with preclearance legislation; and\n(b) collect any amounts — including duties, taxes and fees — owing under preclearance legislation.\n(5) [Sections 20 and 21 of Customs Act] For the purposes of sections 20 and 21 of the Customs Act, goods, as defined in section 2 of that Act, are to be treated as if they have been transported entirely within Canada if they are transported from a preclearance area or preclearance perimeter to a place in Canada over territory or waters outside Canada.",
|
| 912 |
+
"citation": "Preclearance Act, s. 47"
|
| 913 |
+
},
|
| 914 |
+
{
|
| 915 |
+
"act_code": "P-19.32",
|
| 916 |
+
"act_short": "Preclearance Act",
|
| 917 |
+
"act_name": "Preclearance Act, 2016",
|
| 918 |
+
"section": "48",
|
| 919 |
+
"marginal_note": "Application of Immigration and Refugee Protection Act",
|
| 920 |
+
"part": "PART 2 - Preclearance by Canada in the United States",
|
| 921 |
+
"division": "",
|
| 922 |
+
"heading": "Preclearance",
|
| 923 |
+
"history": "",
|
| 924 |
+
"last_amended": "2019-08-15",
|
| 925 |
+
"in_force": "2019-08-15",
|
| 926 |
+
"status": "in force",
|
| 927 |
+
"current_to": "2024-12-15",
|
| 928 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-48.html",
|
| 929 |
+
"id": "P-19.32-s48-p1",
|
| 930 |
+
"text": "48\n(1) For greater certainty, a traveller in a preclearance area or preclearance perimeter who is seeking to enter Canada is, for the purposes of the Immigration and Refugee Protection Act, outside Canada.\n(2) [No claim for refugee protection] No claim for refugee protection under section 99 of the Immigration and Refugee Protection Act may be made in a preclearance area or preclearance perimeter.\n(3) [Powers, duties and functions] Subject to section 49 and the regulations, a border services officer may, in a preclearance area or preclearance perimeter, exercise the powers and perform the duties and functions specified in their designation or authorization under section 6 of the Immigration and Refugee Protection Act with respect to travellers bound for Canada.\n(4) [Preparation of report — inadmissibility] A border services officer may prepare a report setting out the relevant facts, and transmit it to the Minister of Public Safety and Emergency Preparedness, if the officer is of the opinion that a foreign national or permanent resident in a preclearance area or preclearance perimeter is inadmissible on any ground of inadmissibility that is set out in the Immigration and Refugee Protection Act and that is prescribed by regulations made under subsection (7).\n(5) [Refusal to permit entrance] If the Minister of Public Safety and Emergency Preparedness is of the opinion that the report is well-founded, he or she may refuse to permit the foreign national — or, despite subsections 19(2) and 27(1) of the Immigration and Refugee Protection Act, the permanent resident — from entering Canada through the preclearance area or preclearance perimeter.",
|
| 931 |
+
"citation": "Preclearance Act, s. 48 (part 1 of 2)"
|
| 932 |
+
},
|
| 933 |
+
{
|
| 934 |
+
"act_code": "P-19.32",
|
| 935 |
+
"act_short": "Preclearance Act",
|
| 936 |
+
"act_name": "Preclearance Act, 2016",
|
| 937 |
+
"section": "48",
|
| 938 |
+
"marginal_note": "Application of Immigration and Refugee Protection Act",
|
| 939 |
+
"part": "PART 2 - Preclearance by Canada in the United States",
|
| 940 |
+
"division": "",
|
| 941 |
+
"heading": "Preclearance",
|
| 942 |
+
"history": "",
|
| 943 |
+
"last_amended": "2019-08-15",
|
| 944 |
+
"in_force": "2019-08-15",
|
| 945 |
+
"status": "in force",
|
| 946 |
+
"current_to": "2024-12-15",
|
| 947 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-48.html",
|
| 948 |
+
"id": "P-19.32-s48-p2",
|
| 949 |
+
"text": "(6) [Delegation of powers] Anything that may be done by the Minister of Public Safety and Emergency Preparedness under subsection (5) may be done by a border services officer who is so authorized in writing by that Minister, without proof of the authenticity of the authorization.\n(7) [Regulations] The Governor in Council may make regulations prescribing grounds of inadmissibility that are set out in the Immigration and Refugee Protection Act for the purpose of subsection (4). The regulations may distinguish between foreign nationals and permanent residents and between classes of foreign nationals.\n(8) [Definitions] In this section, foreign national and permanent resident have the same meanings as in subsection 2(1) of the Immigration and Refugee Protection Act.",
|
| 950 |
+
"citation": "Preclearance Act, s. 48 (part 2 of 2)"
|
| 951 |
+
},
|
| 952 |
+
{
|
| 953 |
+
"act_code": "P-19.32",
|
| 954 |
+
"act_short": "Preclearance Act",
|
| 955 |
+
"act_name": "Preclearance Act, 2016",
|
| 956 |
+
"section": "49",
|
| 957 |
+
"marginal_note": "Limitation",
|
| 958 |
+
"part": "PART 2 - Preclearance by Canada in the United States",
|
| 959 |
+
"division": "",
|
| 960 |
+
"heading": "Preclearance",
|
| 961 |
+
"history": "",
|
| 962 |
+
"last_amended": "2019-08-15",
|
| 963 |
+
"in_force": "2019-08-15",
|
| 964 |
+
"status": "in force",
|
| 965 |
+
"current_to": "2024-12-15",
|
| 966 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-49.html",
|
| 967 |
+
"id": "P-19.32-s49",
|
| 968 |
+
"text": "49\n(1) A border services officer or other public officer is not permitted, in a preclearance area or preclearance perimeter, to exercise any powers of questioning or interrogation, examination, search, seizure, forfeiture, detention or arrest, except to the extent that such powers are conferred on the officer by the laws of the United States.\n(2) [Exception] Subsection (1) does not apply to an examination within the meaning of the Immigration and Refugee Protection Act.\n(3) [Restriction] The authority that may designate or authorize a border services officer or other public officer to exercise powers, or perform duties or functions, under preclearance legislation or the Immigration and Refugee Protection Act may restrict or exclude the exercise of a power, or the performance of a duty or function, in a preclearance area or preclearance perimeter by the officer or by a class of border service officers or other public officers.\n(4) [No penalty or sanction — United States prosecution] No administrative monetary penalty or other civil sanction may be imposed with respect to an act or omission committed by a person in a preclearance area or preclearance perimeter if a prosecution for an offence is instituted in the United States with respect to the act or omission that would give rise to it. If such a prosecution is instituted after a penalty or sanction has been imposed, the penalty or sanction is a nullity and any payment in respect of it must be reimbursed.",
|
| 969 |
+
"citation": "Preclearance Act, s. 49"
|
| 970 |
+
},
|
| 971 |
+
{
|
| 972 |
+
"act_code": "P-19.32",
|
| 973 |
+
"act_short": "Preclearance Act",
|
| 974 |
+
"act_name": "Preclearance Act, 2016",
|
| 975 |
+
"section": "50",
|
| 976 |
+
"marginal_note": "Proceeds of crime — reporting",
|
| 977 |
+
"part": "PART 2 - Preclearance by Canada in the United States",
|
| 978 |
+
"division": "",
|
| 979 |
+
"heading": "Preclearance",
|
| 980 |
+
"history": "",
|
| 981 |
+
"last_amended": "2019-08-15",
|
| 982 |
+
"in_force": "2019-08-15",
|
| 983 |
+
"status": "in force",
|
| 984 |
+
"current_to": "2024-12-15",
|
| 985 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-50.html",
|
| 986 |
+
"id": "P-19.32-s50",
|
| 987 |
+
"text": "50 If a border services officer transfers, to a United States federal, state, tribal or local law enforcement agent, currency or a monetary instrument that was retained in a preclearance area or preclearance perimeter as a result of the application of the Proceeds of Crime (Money Laundering) and Terrorist Financing Act, the officer must, without delay, report the circumstances of the transfer to the President of the Canada Border Services Agency and to the Financial Transactions and Reports Analysis Centre of Canada. The officer’s report must be provided in the form and manner that are specified by the Centre.",
|
| 988 |
+
"citation": "Preclearance Act, s. 50"
|
| 989 |
+
},
|
| 990 |
+
{
|
| 991 |
+
"act_code": "P-19.32",
|
| 992 |
+
"act_short": "Preclearance Act",
|
| 993 |
+
"act_name": "Preclearance Act, 2016",
|
| 994 |
+
"section": "51",
|
| 995 |
+
"marginal_note": "Detained goods",
|
| 996 |
+
"part": "PART 2 - Preclearance by Canada in the United States",
|
| 997 |
+
"division": "",
|
| 998 |
+
"heading": "Preclearance",
|
| 999 |
+
"history": "",
|
| 1000 |
+
"last_amended": "2019-08-15",
|
| 1001 |
+
"in_force": "2019-08-15",
|
| 1002 |
+
"status": "in force",
|
| 1003 |
+
"current_to": "2024-12-15",
|
| 1004 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-51.html",
|
| 1005 |
+
"id": "P-19.32-s51",
|
| 1006 |
+
"text": "51 If goods are detained under the laws of the United States by a border services officer or other public officer in the course of preclearance, a border services officer or other public officer may, to the extent permitted by the laws of the United States, deal with those goods as if they were detained under the applicable preclearance legislation.",
|
| 1007 |
+
"citation": "Preclearance Act, s. 51"
|
| 1008 |
+
},
|
| 1009 |
+
{
|
| 1010 |
+
"act_code": "P-19.32",
|
| 1011 |
+
"act_short": "Preclearance Act",
|
| 1012 |
+
"act_name": "Preclearance Act, 2016",
|
| 1013 |
+
"section": "52",
|
| 1014 |
+
"marginal_note": "For greater certainty",
|
| 1015 |
+
"part": "PART 2 - Preclearance by Canada in the United States",
|
| 1016 |
+
"division": "",
|
| 1017 |
+
"heading": "Detention and Delivery under Laws of the United States",
|
| 1018 |
+
"history": "",
|
| 1019 |
+
"last_amended": "2019-08-15",
|
| 1020 |
+
"in_force": "2019-08-15",
|
| 1021 |
+
"status": "in force",
|
| 1022 |
+
"current_to": "2024-12-15",
|
| 1023 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-52.html",
|
| 1024 |
+
"id": "P-19.32-s52",
|
| 1025 |
+
"text": "52\n(1) For greater certainty, section 19 and subsection 27(1) of the Immigration and Refugee Protection Act do not operate so as to prevent a border services officer from, under the laws of the United States, detaining a person in a preclearance area or preclearance perimeter and delivering them into the custody of a United States federal, state, tribal or local law enforcement agent.\n(2) [Information] If a person or goods are detained under the laws of the United States in a preclearance area or preclearance perimeter by a border services officer and delivered into the custody of a United States federal, state, tribal or local law enforcement agent, a border services officer may disclose to the agent any information — including personal information, as defined in section 3 of the Privacy Act — that relates to the circumstances of that detention and delivery.",
|
| 1026 |
+
"citation": "Preclearance Act, s. 52"
|
| 1027 |
+
},
|
| 1028 |
+
{
|
| 1029 |
+
"act_code": "P-19.32",
|
| 1030 |
+
"act_short": "Preclearance Act",
|
| 1031 |
+
"act_name": "Preclearance Act, 2016",
|
| 1032 |
+
"section": "53",
|
| 1033 |
+
"marginal_note": "Exempt from further compliance",
|
| 1034 |
+
"part": "PART 2 - Preclearance by Canada in the United States",
|
| 1035 |
+
"division": "",
|
| 1036 |
+
"heading": "Exemption from Compliance on Entry into Canada",
|
| 1037 |
+
"history": "",
|
| 1038 |
+
"last_amended": "2019-08-15",
|
| 1039 |
+
"in_force": "2019-08-15",
|
| 1040 |
+
"status": "in force",
|
| 1041 |
+
"current_to": "2024-12-15",
|
| 1042 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-53.html",
|
| 1043 |
+
"id": "P-19.32-s53",
|
| 1044 |
+
"text": "53\n(1) If a traveller bound for Canada has fully met, in a preclearance area or preclearance perimeter, an obligation under preclearance legislation or under the Immigration and Refugee Protection Act that applies on entry into Canada, the traveller is exempt from again complying with that obligation once they enter Canada, unless a border services officer or other public officer requires the traveller to do so.\n(2) [Obligation under regulations] If a traveller bound for Canada has fully met, in a preclearance area or preclearance perimeter, an obligation under the regulations that is an adaptation of an equivalent obligation under preclearance legislation or under the Immigration and Refugee Protection Act that applies on entry into Canada, the traveller is exempt from complying with that equivalent obligation once they enter Canada, unless a border services officer or other public officer requires the traveller to do so.\n(3) [Officers] In this section, a reference to a “border services officer or other public officer” includes a reference to a person who is employed, designated or authorized as set out in the definition border services officer or other public officer in section 46 but who has not been assigned to conduct preclearance in the United States.",
|
| 1045 |
+
"citation": "Preclearance Act, s. 53"
|
| 1046 |
+
},
|
| 1047 |
+
{
|
| 1048 |
+
"act_code": "P-19.32",
|
| 1049 |
+
"act_short": "Preclearance Act",
|
| 1050 |
+
"act_name": "Preclearance Act, 2016",
|
| 1051 |
+
"section": "54",
|
| 1052 |
+
"marginal_note": "Traveller may withdraw from preclearance",
|
| 1053 |
+
"part": "PART 2 - Preclearance by Canada in the United States",
|
| 1054 |
+
"division": "",
|
| 1055 |
+
"heading": "Withdrawal",
|
| 1056 |
+
"history": "",
|
| 1057 |
+
"last_amended": "2019-08-15",
|
| 1058 |
+
"in_force": "2019-08-15",
|
| 1059 |
+
"status": "in force",
|
| 1060 |
+
"current_to": "2024-12-15",
|
| 1061 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-54.html",
|
| 1062 |
+
"id": "P-19.32-s54",
|
| 1063 |
+
"text": "54\n(1) Despite any preclearance legislation and the Immigration and Refugee Protection Act, every traveller bound for Canada, unless they are detained, may withdraw from preclearance and may leave a preclearance area or preclearance perimeter without departing for Canada.\n(2) [For greater certainty] For greater certainty, despite any obligation that would otherwise apply under section 47, under the Immigration and Refugee Protection Act or under the regulations, a traveller who withdraws from preclearance is not required to answer any question asked of them for the purpose of conducting preclearance.",
|
| 1064 |
+
"citation": "Preclearance Act, s. 54"
|
| 1065 |
+
},
|
| 1066 |
+
{
|
| 1067 |
+
"act_code": "P-19.32",
|
| 1068 |
+
"act_short": "Preclearance Act",
|
| 1069 |
+
"act_name": "Preclearance Act, 2016",
|
| 1070 |
+
"section": "55",
|
| 1071 |
+
"marginal_note": "Traveller’s obligations",
|
| 1072 |
+
"part": "PART 2 - Preclearance by Canada in the United States",
|
| 1073 |
+
"division": "",
|
| 1074 |
+
"heading": "Withdrawal",
|
| 1075 |
+
"history": "",
|
| 1076 |
+
"last_amended": "2019-08-15",
|
| 1077 |
+
"in_force": "2019-08-15",
|
| 1078 |
+
"status": "in force",
|
| 1079 |
+
"current_to": "2024-12-15",
|
| 1080 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-55.html",
|
| 1081 |
+
"id": "P-19.32-s55",
|
| 1082 |
+
"text": "55 Subject to the laws of the United States, a traveller who withdraws from preclearance must\n(a) answer truthfully any question asked by a border services officer for the purpose of identifying the traveller or of determining their reason for withdrawing; and\n(b) comply with any other direction made by a border services officer that such an officer is authorized to make under the laws of the United States when a traveller withdraws.",
|
| 1083 |
+
"citation": "Preclearance Act, s. 55"
|
| 1084 |
+
},
|
| 1085 |
+
{
|
| 1086 |
+
"act_code": "P-19.32",
|
| 1087 |
+
"act_short": "Preclearance Act",
|
| 1088 |
+
"act_name": "Preclearance Act, 2016",
|
| 1089 |
+
"section": "56",
|
| 1090 |
+
"marginal_note": "Powers, duties and functions on withdrawal",
|
| 1091 |
+
"part": "PART 2 - Preclearance by Canada in the United States",
|
| 1092 |
+
"division": "",
|
| 1093 |
+
"heading": "Withdrawal",
|
| 1094 |
+
"history": "",
|
| 1095 |
+
"last_amended": "2019-08-15",
|
| 1096 |
+
"in_force": "2019-08-15",
|
| 1097 |
+
"status": "in force",
|
| 1098 |
+
"current_to": "2024-12-15",
|
| 1099 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-56.html",
|
| 1100 |
+
"id": "P-19.32-s56",
|
| 1101 |
+
"text": "56 After a traveller has indicated that he or she is withdrawing from preclearance, a border services officer or other public officer is not permitted to exercise any powers, or perform any duties or functions, other than those authorized under the laws of the United States when a traveller withdraws.",
|
| 1102 |
+
"citation": "Preclearance Act, s. 56"
|
| 1103 |
+
},
|
| 1104 |
+
{
|
| 1105 |
+
"act_code": "P-19.32",
|
| 1106 |
+
"act_short": "Preclearance Act",
|
| 1107 |
+
"act_name": "Preclearance Act, 2016",
|
| 1108 |
+
"section": "57",
|
| 1109 |
+
"marginal_note": "Governor in Council",
|
| 1110 |
+
"part": "PART 2 - Preclearance by Canada in the United States",
|
| 1111 |
+
"division": "",
|
| 1112 |
+
"heading": "Regulations",
|
| 1113 |
+
"history": "",
|
| 1114 |
+
"last_amended": "2019-08-15",
|
| 1115 |
+
"in_force": "2019-08-15",
|
| 1116 |
+
"status": "in force",
|
| 1117 |
+
"current_to": "2024-12-15",
|
| 1118 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-57.html",
|
| 1119 |
+
"id": "P-19.32-s57",
|
| 1120 |
+
"text": "57\n(1) The Governor in Council may make regulations\n(a) adapting, for the purpose of applying it in a preclearance area or preclearance perimeter,\n(i) any preclearance legislation described in paragraph (a) of the definition of that expression in section 46, or\n(ii) any provision of the Immigration and Refugee Protection Act or of regulations made under that Act; and\n(b) restricting or excluding the application of any such preclearance legislation or provision in a preclearance area or preclearance perimeter.\n(2) [Different treatment] The regulations made under subsection (1) may distinguish between individual preclearance areas or individual preclearance perimeters and between classes of such areas or perimeters.",
|
| 1121 |
+
"citation": "Preclearance Act, s. 57"
|
| 1122 |
+
},
|
| 1123 |
+
{
|
| 1124 |
+
"act_code": "P-19.32",
|
| 1125 |
+
"act_short": "Preclearance Act",
|
| 1126 |
+
"act_name": "Preclearance Act, 2016",
|
| 1127 |
+
"section": "58",
|
| 1128 |
+
"marginal_note": "Deemed commission in Canada",
|
| 1129 |
+
"part": "PART 2 - Preclearance by Canada in the United States",
|
| 1130 |
+
"division": "",
|
| 1131 |
+
"heading": "Offences — Acts or Omissions in Preclearance Area or Preclearance Perimeter",
|
| 1132 |
+
"history": "",
|
| 1133 |
+
"last_amended": "2019-08-15",
|
| 1134 |
+
"in_force": "2019-08-15",
|
| 1135 |
+
"status": "in force",
|
| 1136 |
+
"current_to": "2024-12-15",
|
| 1137 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-58.html",
|
| 1138 |
+
"id": "P-19.32-s58",
|
| 1139 |
+
"text": "58\n(1) A person is deemed to have committed an act or omission in Canada if the act or omission is committed in a preclearance area or preclearance perimeter and, had it been committed in Canada, would constitute\n(a) an offence, under any Act of Parliament other than the Immigration and Refugee Protection Act, that relates to the entry of persons or importation of goods into Canada; or\n(b) a conspiracy to commit, an attempt to commit, being an accessory after the fact in relation to, or any counselling in relation to, such an offence.\n(2) [Element of offence — entry or importation] For the purpose of determining whether an act or omission would constitute an offence referred to in paragraph (1)(a) or (b),\n(a) if an element of the offence is the entry of a person into Canada, a person who is a traveller bound for Canada and who enters a preclearance area or preclearance perimeter is considered to have entered Canada; and\n(b) if an element of the offence is the importation of goods into Canada, goods that are bound for Canada and that are brought into a preclearance area or preclearance perimeter are considered to have been imported into Canada.\n(3) [Jurisdiction] If a person is alleged to have committed an act or omission that is deemed to have been committed in Canada under subsection (1), proceedings for an offence in respect of that act or omission may be commenced in any territorial division in Canada. The person may be tried and punished for that offence as if the offence had been committed in that territorial division.\n(4) [Previously tried in the United States] If a person is alleged to have committed an act or omission that is deemed to have been committed in Canada under subsection (1) and they have been tried and dealt with in the United States for an offence in respect of the act or omission so that, if they had been tried and dealt with in Canada, they would be able to plead autrefois acquit, autrefois convict or pardon, they are deemed to have been so tried and dealt with in Canada.\n(5) [For greater certainty] For greater certainty, sections 135 and 136 of the Immigration and Refugee Protection Act apply with respect to an act or omission committed in a preclearance area or preclearance perimeter.",
|
| 1140 |
+
"citation": "Preclearance Act, s. 58"
|
| 1141 |
+
},
|
| 1142 |
+
{
|
| 1143 |
+
"act_code": "P-19.32",
|
| 1144 |
+
"act_short": "Preclearance Act",
|
| 1145 |
+
"act_name": "Preclearance Act, 2016",
|
| 1146 |
+
"section": "59",
|
| 1147 |
+
"marginal_note": "Primary criminal jurisdiction",
|
| 1148 |
+
"part": "PART 2 - Preclearance by Canada in the United States",
|
| 1149 |
+
"division": "",
|
| 1150 |
+
"heading": "Jurisdiction — Offence by Canadian Officer",
|
| 1151 |
+
"history": "",
|
| 1152 |
+
"last_amended": "2019-08-15",
|
| 1153 |
+
"in_force": "2019-08-15",
|
| 1154 |
+
"status": "in force",
|
| 1155 |
+
"current_to": "2024-12-15",
|
| 1156 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-59.html",
|
| 1157 |
+
"id": "P-19.32-s59",
|
| 1158 |
+
"text": "59\n(1) The Attorney General of Canada is responsible for advising the Minister with respect to the exercise or waiver of primary criminal jurisdiction under Article X of the Agreement in relation to an act or omission committed in the United States by a border services officer or other public officer in the exercise of their powers, and performance of their duties and functions, under this Part.\n(2) [Additional factors] The Attorney General of Canada may, in providing advice with respect to the waiver of primary criminal jurisdiction under paragraphs 15 and 16 of Article X of the Agreement, consider the following factors in addition to those set out in that paragraph 16:\n(a) the severity of the sentence a border services officer or other public officer accused of an offence is likely, if convicted, to receive in Canada as compared to the United States;\n(b) the impact with respect to evidence if proceedings are held in Canada as compared to the United States;\n(c) the impact on witnesses if proceedings are held in Canada as compared to the United States;\n(d) the jurisdiction that has the greater interest in prosecuting the border services officer or other public officer for the act or omission in question; and\n(e) any other factor that the Attorney General considers relevant.",
|
| 1159 |
+
"citation": "Preclearance Act, s. 59"
|
| 1160 |
+
},
|
| 1161 |
+
{
|
| 1162 |
+
"act_code": "P-19.32",
|
| 1163 |
+
"act_short": "Preclearance Act",
|
| 1164 |
+
"act_name": "Preclearance Act, 2016",
|
| 1165 |
+
"section": "60",
|
| 1166 |
+
"marginal_note": "Exclusive authority",
|
| 1167 |
+
"part": "PART 2 - Preclearance by Canada in the United States",
|
| 1168 |
+
"division": "",
|
| 1169 |
+
"heading": "Jurisdiction — Offence by Canadian Officer",
|
| 1170 |
+
"history": "",
|
| 1171 |
+
"last_amended": "2019-08-15",
|
| 1172 |
+
"in_force": "2019-08-15",
|
| 1173 |
+
"status": "in force",
|
| 1174 |
+
"current_to": "2024-12-15",
|
| 1175 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-60.html",
|
| 1176 |
+
"id": "P-19.32-s60",
|
| 1177 |
+
"text": "60 The Attorney General of Canada has exclusive authority to commence and conduct a prosecution or other criminal proceedings with respect to an act or omission committed in the United States by a border services officer or other public officer in the exercise of their powers, and performance of their duties and functions, under this Part, and for that purpose the Attorney General of Canada may exercise any of the powers, or perform any of the duties and functions, assigned under the Criminal Code to an Attorney General.",
|
| 1178 |
+
"citation": "Preclearance Act, s. 60"
|
| 1179 |
+
},
|
| 1180 |
+
{
|
| 1181 |
+
"act_code": "P-19.32",
|
| 1182 |
+
"act_short": "Preclearance Act",
|
| 1183 |
+
"act_name": "Preclearance Act, 2016",
|
| 1184 |
+
"section": "62.1",
|
| 1185 |
+
"marginal_note": "Review and report",
|
| 1186 |
+
"part": "PART 3.1 - Independent Review",
|
| 1187 |
+
"division": "",
|
| 1188 |
+
"heading": "PART 3.1 - Independent Review",
|
| 1189 |
+
"history": "",
|
| 1190 |
+
"last_amended": "2019-08-15",
|
| 1191 |
+
"in_force": "2019-08-15",
|
| 1192 |
+
"status": "in force",
|
| 1193 |
+
"current_to": "2024-12-15",
|
| 1194 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-62.1.html",
|
| 1195 |
+
"id": "P-19.32-s62.1",
|
| 1196 |
+
"text": "62.1 Five years after this Act comes into force, the Minister must cause to be conducted an independent review of this Act, and its administration and operation, and must cause a report on the review to be laid before each House of Parliament on any of the first 15 days on which that House is sitting after the review is completed.",
|
| 1197 |
+
"citation": "Preclearance Act, s. 62.1"
|
| 1198 |
+
},
|
| 1199 |
+
{
|
| 1200 |
+
"act_code": "P-19.32",
|
| 1201 |
+
"act_short": "Preclearance Act",
|
| 1202 |
+
"act_name": "Preclearance Act, 2016",
|
| 1203 |
+
"section": "64",
|
| 1204 |
+
"marginal_note": "Repeal",
|
| 1205 |
+
"part": "PART 4 - Consequential Amendment, Repeal and Coming into Force",
|
| 1206 |
+
"division": "",
|
| 1207 |
+
"heading": "Repeal",
|
| 1208 |
+
"history": "",
|
| 1209 |
+
"last_amended": "2019-08-15",
|
| 1210 |
+
"in_force": "2019-08-15",
|
| 1211 |
+
"status": "in force",
|
| 1212 |
+
"current_to": "2024-12-15",
|
| 1213 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-64.html",
|
| 1214 |
+
"id": "P-19.32-s64",
|
| 1215 |
+
"text": "64 The Preclearance Act, chapter 20 of the Statutes of Canada, 1999, is repealed.",
|
| 1216 |
+
"citation": "Preclearance Act, s. 64"
|
| 1217 |
+
},
|
| 1218 |
+
{
|
| 1219 |
+
"act_code": "P-19.32",
|
| 1220 |
+
"act_short": "Preclearance Act",
|
| 1221 |
+
"act_name": "Preclearance Act, 2016",
|
| 1222 |
+
"section": "*65",
|
| 1223 |
+
"marginal_note": "Order in council",
|
| 1224 |
+
"part": "PART 4 - Consequential Amendment, Repeal and Coming into Force",
|
| 1225 |
+
"division": "",
|
| 1226 |
+
"heading": "Coming into Force",
|
| 1227 |
+
"history": "",
|
| 1228 |
+
"last_amended": "2019-08-15",
|
| 1229 |
+
"in_force": "2017-12-12",
|
| 1230 |
+
"status": "in force",
|
| 1231 |
+
"current_to": "2024-12-15",
|
| 1232 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-19.32/section-*65.html",
|
| 1233 |
+
"id": "P-19.32-s*65",
|
| 1234 |
+
"text": "*65 The provisions of this Act come into force on a day or days to be fixed by order of the Governor in Council.\n* [Note: Act in force August 15, 2019, see SI/2019-34.]",
|
| 1235 |
+
"citation": "Preclearance Act, s. *65"
|
| 1236 |
+
}
|
| 1237 |
+
]
|
|
@@ -5623,25 +5623,6 @@
|
|
| 5623 |
"text": "84 to 96 [Amendments]",
|
| 5624 |
"citation": "PCMLTFA, s. 84 to 96"
|
| 5625 |
},
|
| 5626 |
-
{
|
| 5627 |
-
"act_code": "P-24.501",
|
| 5628 |
-
"act_short": "PCMLTFA",
|
| 5629 |
-
"act_name": "Proceeds of Crime (Money Laundering) and Terrorist Financing Act",
|
| 5630 |
-
"section": "97",
|
| 5631 |
-
"marginal_note": "",
|
| 5632 |
-
"part": "PART 6 - Transitional Provisions, Consequential and Conditional Amendments, Repeal and Coming into Force",
|
| 5633 |
-
"division": "",
|
| 5634 |
-
"heading": "Conditional Amendments",
|
| 5635 |
-
"history": "",
|
| 5636 |
-
"last_amended": "2002-12-31",
|
| 5637 |
-
"in_force": "2002-12-31",
|
| 5638 |
-
"status": "in force",
|
| 5639 |
-
"current_to": "2026-03-31",
|
| 5640 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/p-24.501/section-97.html",
|
| 5641 |
-
"id": "P-24.501-s97",
|
| 5642 |
-
"text": "97 [Amendments]",
|
| 5643 |
-
"citation": "PCMLTFA, s. 97"
|
| 5644 |
-
},
|
| 5645 |
{
|
| 5646 |
"act_code": "P-24.501",
|
| 5647 |
"act_short": "PCMLTFA",
|
|
|
|
| 5623 |
"text": "84 to 96 [Amendments]",
|
| 5624 |
"citation": "PCMLTFA, s. 84 to 96"
|
| 5625 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 5626 |
{
|
| 5627 |
"act_code": "P-24.501",
|
| 5628 |
"act_short": "PCMLTFA",
|
|
@@ -1671,25 +1671,6 @@
|
|
| 1671 |
"text": "(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.",
|
| 1672 |
"citation": "Quarantine Act, s. 80 (part 2 of 2)"
|
| 1673 |
},
|
| 1674 |
-
{
|
| 1675 |
-
"act_code": "Q-1.1",
|
| 1676 |
-
"act_short": "Quarantine Act",
|
| 1677 |
-
"act_name": "Quarantine Act",
|
| 1678 |
-
"section": "81",
|
| 1679 |
-
"marginal_note": "",
|
| 1680 |
-
"part": "",
|
| 1681 |
-
"division": "",
|
| 1682 |
-
"heading": "Immigration and Refugee Protection Act",
|
| 1683 |
-
"history": "",
|
| 1684 |
-
"last_amended": "2006-12-12",
|
| 1685 |
-
"in_force": "2006-12-12",
|
| 1686 |
-
"status": "in force",
|
| 1687 |
-
"current_to": "2024-04-01",
|
| 1688 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-81.html",
|
| 1689 |
-
"id": "Q-1.1-s81",
|
| 1690 |
-
"text": "81 [Amendment]",
|
| 1691 |
-
"citation": "Quarantine Act, s. 81"
|
| 1692 |
-
},
|
| 1693 |
{
|
| 1694 |
"act_code": "Q-1.1",
|
| 1695 |
"act_short": "Quarantine Act",
|
|
@@ -1709,25 +1690,6 @@
|
|
| 1709 |
"text": "82 [Repeal]",
|
| 1710 |
"citation": "Quarantine Act, s. 82"
|
| 1711 |
},
|
| 1712 |
-
{
|
| 1713 |
-
"act_code": "Q-1.1",
|
| 1714 |
-
"act_short": "Quarantine Act",
|
| 1715 |
-
"act_name": "Quarantine Act",
|
| 1716 |
-
"section": "83",
|
| 1717 |
-
"marginal_note": "",
|
| 1718 |
-
"part": "",
|
| 1719 |
-
"division": "",
|
| 1720 |
-
"heading": "Coordinating Amendment",
|
| 1721 |
-
"history": "",
|
| 1722 |
-
"last_amended": "2005-05-13",
|
| 1723 |
-
"in_force": "2005-05-13",
|
| 1724 |
-
"status": "in force",
|
| 1725 |
-
"current_to": "2024-04-01",
|
| 1726 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/q-1.1/section-83.html",
|
| 1727 |
-
"id": "Q-1.1-s83",
|
| 1728 |
-
"text": "83 [Amendment]",
|
| 1729 |
-
"citation": "Quarantine Act, s. 83"
|
| 1730 |
-
},
|
| 1731 |
{
|
| 1732 |
"act_code": "Q-1.1",
|
| 1733 |
"act_short": "Quarantine Act",
|
|
|
|
| 1671 |
"text": "(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.",
|
| 1672 |
"citation": "Quarantine Act, s. 80 (part 2 of 2)"
|
| 1673 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1674 |
{
|
| 1675 |
"act_code": "Q-1.1",
|
| 1676 |
"act_short": "Quarantine Act",
|
|
|
|
| 1690 |
"text": "82 [Repeal]",
|
| 1691 |
"citation": "Quarantine Act, s. 82"
|
| 1692 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1693 |
{
|
| 1694 |
"act_code": "Q-1.1",
|
| 1695 |
"act_short": "Quarantine Act",
|
|
@@ -0,0 +1,59 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"act_code": "SOR-2002-336",
|
| 4 |
+
"act_short": "Designated Provisions (Customs) Regs",
|
| 5 |
+
"act_name": "Designated Provisions (Customs) Regulations",
|
| 6 |
+
"section": "1",
|
| 7 |
+
"marginal_note": "",
|
| 8 |
+
"part": "",
|
| 9 |
+
"division": "",
|
| 10 |
+
"heading": "Designation of Provisions",
|
| 11 |
+
"history": "",
|
| 12 |
+
"last_amended": "2006-03-22",
|
| 13 |
+
"in_force": "2006-03-22",
|
| 14 |
+
"status": "in force",
|
| 15 |
+
"current_to": "2024-10-30",
|
| 16 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2002-336/section-1.html",
|
| 17 |
+
"id": "SOR-2002-336-s1",
|
| 18 |
+
"text": "1 A provision of the Customs Act or the Customs Tariff or a regulation made under any of those Acts that is set out in column 1 of Schedules 1 or 2 is designated for the purpose of subsection 109.1(1) of the Customs Act.",
|
| 19 |
+
"citation": "Designated Provisions (Customs) Regs, s. 1"
|
| 20 |
+
},
|
| 21 |
+
{
|
| 22 |
+
"act_code": "SOR-2002-336",
|
| 23 |
+
"act_short": "Designated Provisions (Customs) Regs",
|
| 24 |
+
"act_name": "Designated Provisions (Customs) Regulations",
|
| 25 |
+
"section": "2",
|
| 26 |
+
"marginal_note": "",
|
| 27 |
+
"part": "",
|
| 28 |
+
"division": "",
|
| 29 |
+
"heading": "Short-form Descriptions",
|
| 30 |
+
"history": "",
|
| 31 |
+
"last_amended": "2006-03-22",
|
| 32 |
+
"in_force": "2006-03-22",
|
| 33 |
+
"status": "in force",
|
| 34 |
+
"current_to": "2024-10-30",
|
| 35 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2002-336/section-2.html",
|
| 36 |
+
"id": "SOR-2002-336-s2",
|
| 37 |
+
"text": "2\n(1) The short-form descriptions of a designated provision that is set out in column 1 of an item in Schedules 1 or 2 are the descriptions set out in column 2 of that item.\n(2) Subject to subsection 109.3(4) of the Customs Act, the applicable short-form description of a designated provision shall be used on a notice of assessment referred to in subsection 109.3(1) of the Customs Act to describe a contravention of the provision.",
|
| 38 |
+
"citation": "Designated Provisions (Customs) Regs, s. 2"
|
| 39 |
+
},
|
| 40 |
+
{
|
| 41 |
+
"act_code": "SOR-2002-336",
|
| 42 |
+
"act_short": "Designated Provisions (Customs) Regs",
|
| 43 |
+
"act_name": "Designated Provisions (Customs) Regulations",
|
| 44 |
+
"section": "3",
|
| 45 |
+
"marginal_note": "",
|
| 46 |
+
"part": "",
|
| 47 |
+
"division": "",
|
| 48 |
+
"heading": "Coming into Force",
|
| 49 |
+
"history": "",
|
| 50 |
+
"last_amended": "2006-03-22",
|
| 51 |
+
"in_force": "2006-03-22",
|
| 52 |
+
"status": "in force",
|
| 53 |
+
"current_to": "2024-10-30",
|
| 54 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2002-336/section-3.html",
|
| 55 |
+
"id": "SOR-2002-336-s3",
|
| 56 |
+
"text": "3 These Regulations come into force on the day on which they are registered.",
|
| 57 |
+
"citation": "Designated Provisions (Customs) Regs, s. 3"
|
| 58 |
+
}
|
| 59 |
+
]
|
|
@@ -94,424 +94,6 @@
|
|
| 94 |
"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.",
|
| 95 |
"citation": "New Classes of Practitioners Regs, s. 5"
|
| 96 |
},
|
| 97 |
-
{
|
| 98 |
-
"act_code": "SOR-2012-230",
|
| 99 |
-
"act_short": "New Classes of Practitioners Regs",
|
| 100 |
-
"act_name": "New Classes of Practitioners Regulations",
|
| 101 |
-
"section": "6",
|
| 102 |
-
"marginal_note": "",
|
| 103 |
-
"part": "",
|
| 104 |
-
"division": "",
|
| 105 |
-
"heading": "Food and Drug Regulations",
|
| 106 |
-
"history": "",
|
| 107 |
-
"last_amended": "2012-11-21",
|
| 108 |
-
"in_force": "2012-11-21",
|
| 109 |
-
"status": "in force",
|
| 110 |
-
"current_to": "2025-12-02",
|
| 111 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2012-230/section-6.html",
|
| 112 |
-
"id": "SOR-2012-230-s6",
|
| 113 |
-
"text": "6 [Amendments]",
|
| 114 |
-
"citation": "New Classes of Practitioners Regs, s. 6"
|
| 115 |
-
},
|
| 116 |
-
{
|
| 117 |
-
"act_code": "SOR-2012-230",
|
| 118 |
-
"act_short": "New Classes of Practitioners Regs",
|
| 119 |
-
"act_name": "New Classes of Practitioners Regulations",
|
| 120 |
-
"section": "7",
|
| 121 |
-
"marginal_note": "",
|
| 122 |
-
"part": "",
|
| 123 |
-
"division": "",
|
| 124 |
-
"heading": "Food and Drug Regulations",
|
| 125 |
-
"history": "",
|
| 126 |
-
"last_amended": "2012-11-21",
|
| 127 |
-
"in_force": "2012-11-21",
|
| 128 |
-
"status": "in force",
|
| 129 |
-
"current_to": "2025-12-02",
|
| 130 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2012-230/section-7.html",
|
| 131 |
-
"id": "SOR-2012-230-s7",
|
| 132 |
-
"text": "7 [Amendment]",
|
| 133 |
-
"citation": "New Classes of Practitioners Regs, s. 7"
|
| 134 |
-
},
|
| 135 |
-
{
|
| 136 |
-
"act_code": "SOR-2012-230",
|
| 137 |
-
"act_short": "New Classes of Practitioners Regs",
|
| 138 |
-
"act_name": "New Classes of Practitioners Regulations",
|
| 139 |
-
"section": "8",
|
| 140 |
-
"marginal_note": "",
|
| 141 |
-
"part": "",
|
| 142 |
-
"division": "",
|
| 143 |
-
"heading": "Food and Drug Regulations",
|
| 144 |
-
"history": "",
|
| 145 |
-
"last_amended": "2012-11-21",
|
| 146 |
-
"in_force": "2012-11-21",
|
| 147 |
-
"status": "in force",
|
| 148 |
-
"current_to": "2025-12-02",
|
| 149 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2012-230/section-8.html",
|
| 150 |
-
"id": "SOR-2012-230-s8",
|
| 151 |
-
"text": "8 [Amendment]",
|
| 152 |
-
"citation": "New Classes of Practitioners Regs, s. 8"
|
| 153 |
-
},
|
| 154 |
-
{
|
| 155 |
-
"act_code": "SOR-2012-230",
|
| 156 |
-
"act_short": "New Classes of Practitioners Regs",
|
| 157 |
-
"act_name": "New Classes of Practitioners Regulations",
|
| 158 |
-
"section": "9",
|
| 159 |
-
"marginal_note": "",
|
| 160 |
-
"part": "",
|
| 161 |
-
"division": "",
|
| 162 |
-
"heading": "Food and Drug Regulations",
|
| 163 |
-
"history": "",
|
| 164 |
-
"last_amended": "2012-11-21",
|
| 165 |
-
"in_force": "2012-11-21",
|
| 166 |
-
"status": "in force",
|
| 167 |
-
"current_to": "2025-12-02",
|
| 168 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2012-230/section-9.html",
|
| 169 |
-
"id": "SOR-2012-230-s9",
|
| 170 |
-
"text": "9 [Amendment]",
|
| 171 |
-
"citation": "New Classes of Practitioners Regs, s. 9"
|
| 172 |
-
},
|
| 173 |
-
{
|
| 174 |
-
"act_code": "SOR-2012-230",
|
| 175 |
-
"act_short": "New Classes of Practitioners Regs",
|
| 176 |
-
"act_name": "New Classes of Practitioners Regulations",
|
| 177 |
-
"section": "10",
|
| 178 |
-
"marginal_note": "",
|
| 179 |
-
"part": "",
|
| 180 |
-
"division": "",
|
| 181 |
-
"heading": "Food and Drug Regulations",
|
| 182 |
-
"history": "",
|
| 183 |
-
"last_amended": "2012-11-21",
|
| 184 |
-
"in_force": "2012-11-21",
|
| 185 |
-
"status": "in force",
|
| 186 |
-
"current_to": "2025-12-02",
|
| 187 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2012-230/section-10.html",
|
| 188 |
-
"id": "SOR-2012-230-s10",
|
| 189 |
-
"text": "10 [Amendments]",
|
| 190 |
-
"citation": "New Classes of Practitioners Regs, s. 10"
|
| 191 |
-
},
|
| 192 |
-
{
|
| 193 |
-
"act_code": "SOR-2012-230",
|
| 194 |
-
"act_short": "New Classes of Practitioners Regs",
|
| 195 |
-
"act_name": "New Classes of Practitioners Regulations",
|
| 196 |
-
"section": "11",
|
| 197 |
-
"marginal_note": "",
|
| 198 |
-
"part": "",
|
| 199 |
-
"division": "",
|
| 200 |
-
"heading": "Food and Drug Regulations",
|
| 201 |
-
"history": "",
|
| 202 |
-
"last_amended": "2012-11-21",
|
| 203 |
-
"in_force": "2012-11-21",
|
| 204 |
-
"status": "in force",
|
| 205 |
-
"current_to": "2025-12-02",
|
| 206 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2012-230/section-11.html",
|
| 207 |
-
"id": "SOR-2012-230-s11",
|
| 208 |
-
"text": "11 [Amendment]",
|
| 209 |
-
"citation": "New Classes of Practitioners Regs, s. 11"
|
| 210 |
-
},
|
| 211 |
-
{
|
| 212 |
-
"act_code": "SOR-2012-230",
|
| 213 |
-
"act_short": "New Classes of Practitioners Regs",
|
| 214 |
-
"act_name": "New Classes of Practitioners Regulations",
|
| 215 |
-
"section": "12",
|
| 216 |
-
"marginal_note": "",
|
| 217 |
-
"part": "",
|
| 218 |
-
"division": "",
|
| 219 |
-
"heading": "Food and Drug Regulations",
|
| 220 |
-
"history": "",
|
| 221 |
-
"last_amended": "2012-11-21",
|
| 222 |
-
"in_force": "2012-11-21",
|
| 223 |
-
"status": "in force",
|
| 224 |
-
"current_to": "2025-12-02",
|
| 225 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2012-230/section-12.html",
|
| 226 |
-
"id": "SOR-2012-230-s12",
|
| 227 |
-
"text": "12 [Amendments]",
|
| 228 |
-
"citation": "New Classes of Practitioners Regs, s. 12"
|
| 229 |
-
},
|
| 230 |
-
{
|
| 231 |
-
"act_code": "SOR-2012-230",
|
| 232 |
-
"act_short": "New Classes of Practitioners Regs",
|
| 233 |
-
"act_name": "New Classes of Practitioners Regulations",
|
| 234 |
-
"section": "13",
|
| 235 |
-
"marginal_note": "",
|
| 236 |
-
"part": "",
|
| 237 |
-
"division": "",
|
| 238 |
-
"heading": "Food and Drug Regulations",
|
| 239 |
-
"history": "",
|
| 240 |
-
"last_amended": "2012-11-21",
|
| 241 |
-
"in_force": "2012-11-21",
|
| 242 |
-
"status": "in force",
|
| 243 |
-
"current_to": "2025-12-02",
|
| 244 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2012-230/section-13.html",
|
| 245 |
-
"id": "SOR-2012-230-s13",
|
| 246 |
-
"text": "13 [Amendment]",
|
| 247 |
-
"citation": "New Classes of Practitioners Regs, s. 13"
|
| 248 |
-
},
|
| 249 |
-
{
|
| 250 |
-
"act_code": "SOR-2012-230",
|
| 251 |
-
"act_short": "New Classes of Practitioners Regs",
|
| 252 |
-
"act_name": "New Classes of Practitioners Regulations",
|
| 253 |
-
"section": "14",
|
| 254 |
-
"marginal_note": "",
|
| 255 |
-
"part": "",
|
| 256 |
-
"division": "",
|
| 257 |
-
"heading": "Narcotic Control Regulations",
|
| 258 |
-
"history": "",
|
| 259 |
-
"last_amended": "2012-11-21",
|
| 260 |
-
"in_force": "2012-11-21",
|
| 261 |
-
"status": "in force",
|
| 262 |
-
"current_to": "2025-12-02",
|
| 263 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2012-230/section-14.html",
|
| 264 |
-
"id": "SOR-2012-230-s14",
|
| 265 |
-
"text": "14 [Amendments]",
|
| 266 |
-
"citation": "New Classes of Practitioners Regs, s. 14"
|
| 267 |
-
},
|
| 268 |
-
{
|
| 269 |
-
"act_code": "SOR-2012-230",
|
| 270 |
-
"act_short": "New Classes of Practitioners Regs",
|
| 271 |
-
"act_name": "New Classes of Practitioners Regulations",
|
| 272 |
-
"section": "15",
|
| 273 |
-
"marginal_note": "",
|
| 274 |
-
"part": "",
|
| 275 |
-
"division": "",
|
| 276 |
-
"heading": "Narcotic Control Regulations",
|
| 277 |
-
"history": "",
|
| 278 |
-
"last_amended": "2012-11-21",
|
| 279 |
-
"in_force": "2012-11-21",
|
| 280 |
-
"status": "in force",
|
| 281 |
-
"current_to": "2025-12-02",
|
| 282 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2012-230/section-15.html",
|
| 283 |
-
"id": "SOR-2012-230-s15",
|
| 284 |
-
"text": "15 [Amendment]",
|
| 285 |
-
"citation": "New Classes of Practitioners Regs, s. 15"
|
| 286 |
-
},
|
| 287 |
-
{
|
| 288 |
-
"act_code": "SOR-2012-230",
|
| 289 |
-
"act_short": "New Classes of Practitioners Regs",
|
| 290 |
-
"act_name": "New Classes of Practitioners Regulations",
|
| 291 |
-
"section": "16",
|
| 292 |
-
"marginal_note": "",
|
| 293 |
-
"part": "",
|
| 294 |
-
"division": "",
|
| 295 |
-
"heading": "Narcotic Control Regulations",
|
| 296 |
-
"history": "",
|
| 297 |
-
"last_amended": "2012-11-21",
|
| 298 |
-
"in_force": "2012-11-21",
|
| 299 |
-
"status": "in force",
|
| 300 |
-
"current_to": "2025-12-02",
|
| 301 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2012-230/section-16.html",
|
| 302 |
-
"id": "SOR-2012-230-s16",
|
| 303 |
-
"text": "16 [Amendment]",
|
| 304 |
-
"citation": "New Classes of Practitioners Regs, s. 16"
|
| 305 |
-
},
|
| 306 |
-
{
|
| 307 |
-
"act_code": "SOR-2012-230",
|
| 308 |
-
"act_short": "New Classes of Practitioners Regs",
|
| 309 |
-
"act_name": "New Classes of Practitioners Regulations",
|
| 310 |
-
"section": "17",
|
| 311 |
-
"marginal_note": "",
|
| 312 |
-
"part": "",
|
| 313 |
-
"division": "",
|
| 314 |
-
"heading": "Narcotic Control Regulations",
|
| 315 |
-
"history": "",
|
| 316 |
-
"last_amended": "2012-11-21",
|
| 317 |
-
"in_force": "2012-11-21",
|
| 318 |
-
"status": "in force",
|
| 319 |
-
"current_to": "2025-12-02",
|
| 320 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2012-230/section-17.html",
|
| 321 |
-
"id": "SOR-2012-230-s17",
|
| 322 |
-
"text": "17 [Amendment]",
|
| 323 |
-
"citation": "New Classes of Practitioners Regs, s. 17"
|
| 324 |
-
},
|
| 325 |
-
{
|
| 326 |
-
"act_code": "SOR-2012-230",
|
| 327 |
-
"act_short": "New Classes of Practitioners Regs",
|
| 328 |
-
"act_name": "New Classes of Practitioners Regulations",
|
| 329 |
-
"section": "18",
|
| 330 |
-
"marginal_note": "",
|
| 331 |
-
"part": "",
|
| 332 |
-
"division": "",
|
| 333 |
-
"heading": "Narcotic Control Regulations",
|
| 334 |
-
"history": "",
|
| 335 |
-
"last_amended": "2012-11-21",
|
| 336 |
-
"in_force": "2012-11-21",
|
| 337 |
-
"status": "in force",
|
| 338 |
-
"current_to": "2025-12-02",
|
| 339 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2012-230/section-18.html",
|
| 340 |
-
"id": "SOR-2012-230-s18",
|
| 341 |
-
"text": "18 [Amendments]",
|
| 342 |
-
"citation": "New Classes of Practitioners Regs, s. 18"
|
| 343 |
-
},
|
| 344 |
-
{
|
| 345 |
-
"act_code": "SOR-2012-230",
|
| 346 |
-
"act_short": "New Classes of Practitioners Regs",
|
| 347 |
-
"act_name": "New Classes of Practitioners Regulations",
|
| 348 |
-
"section": "19",
|
| 349 |
-
"marginal_note": "",
|
| 350 |
-
"part": "",
|
| 351 |
-
"division": "",
|
| 352 |
-
"heading": "Narcotic Control Regulations",
|
| 353 |
-
"history": "",
|
| 354 |
-
"last_amended": "2012-11-21",
|
| 355 |
-
"in_force": "2012-11-21",
|
| 356 |
-
"status": "in force",
|
| 357 |
-
"current_to": "2025-12-02",
|
| 358 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2012-230/section-19.html",
|
| 359 |
-
"id": "SOR-2012-230-s19",
|
| 360 |
-
"text": "19 [Amendment]",
|
| 361 |
-
"citation": "New Classes of Practitioners Regs, s. 19"
|
| 362 |
-
},
|
| 363 |
-
{
|
| 364 |
-
"act_code": "SOR-2012-230",
|
| 365 |
-
"act_short": "New Classes of Practitioners Regs",
|
| 366 |
-
"act_name": "New Classes of Practitioners Regulations",
|
| 367 |
-
"section": "20",
|
| 368 |
-
"marginal_note": "",
|
| 369 |
-
"part": "",
|
| 370 |
-
"division": "",
|
| 371 |
-
"heading": "Narcotic Control Regulations",
|
| 372 |
-
"history": "",
|
| 373 |
-
"last_amended": "2012-11-21",
|
| 374 |
-
"in_force": "2012-11-21",
|
| 375 |
-
"status": "in force",
|
| 376 |
-
"current_to": "2025-12-02",
|
| 377 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2012-230/section-20.html",
|
| 378 |
-
"id": "SOR-2012-230-s20",
|
| 379 |
-
"text": "20 [Amendments]",
|
| 380 |
-
"citation": "New Classes of Practitioners Regs, s. 20"
|
| 381 |
-
},
|
| 382 |
-
{
|
| 383 |
-
"act_code": "SOR-2012-230",
|
| 384 |
-
"act_short": "New Classes of Practitioners Regs",
|
| 385 |
-
"act_name": "New Classes of Practitioners Regulations",
|
| 386 |
-
"section": "21",
|
| 387 |
-
"marginal_note": "",
|
| 388 |
-
"part": "",
|
| 389 |
-
"division": "",
|
| 390 |
-
"heading": "Narcotic Control Regulations",
|
| 391 |
-
"history": "",
|
| 392 |
-
"last_amended": "2012-11-21",
|
| 393 |
-
"in_force": "2012-11-21",
|
| 394 |
-
"status": "in force",
|
| 395 |
-
"current_to": "2025-12-02",
|
| 396 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2012-230/section-21.html",
|
| 397 |
-
"id": "SOR-2012-230-s21",
|
| 398 |
-
"text": "21 [Amendment]",
|
| 399 |
-
"citation": "New Classes of Practitioners Regs, s. 21"
|
| 400 |
-
},
|
| 401 |
-
{
|
| 402 |
-
"act_code": "SOR-2012-230",
|
| 403 |
-
"act_short": "New Classes of Practitioners Regs",
|
| 404 |
-
"act_name": "New Classes of Practitioners Regulations",
|
| 405 |
-
"section": "22",
|
| 406 |
-
"marginal_note": "",
|
| 407 |
-
"part": "",
|
| 408 |
-
"division": "",
|
| 409 |
-
"heading": "Narcotic Control Regulations",
|
| 410 |
-
"history": "",
|
| 411 |
-
"last_amended": "2012-11-21",
|
| 412 |
-
"in_force": "2012-11-21",
|
| 413 |
-
"status": "in force",
|
| 414 |
-
"current_to": "2025-12-02",
|
| 415 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2012-230/section-22.html",
|
| 416 |
-
"id": "SOR-2012-230-s22",
|
| 417 |
-
"text": "22 [Amendment]",
|
| 418 |
-
"citation": "New Classes of Practitioners Regs, s. 22"
|
| 419 |
-
},
|
| 420 |
-
{
|
| 421 |
-
"act_code": "SOR-2012-230",
|
| 422 |
-
"act_short": "New Classes of Practitioners Regs",
|
| 423 |
-
"act_name": "New Classes of Practitioners Regulations",
|
| 424 |
-
"section": "23",
|
| 425 |
-
"marginal_note": "",
|
| 426 |
-
"part": "",
|
| 427 |
-
"division": "",
|
| 428 |
-
"heading": "Narcotic Control Regulations",
|
| 429 |
-
"history": "",
|
| 430 |
-
"last_amended": "2012-11-21",
|
| 431 |
-
"in_force": "2012-11-21",
|
| 432 |
-
"status": "in force",
|
| 433 |
-
"current_to": "2025-12-02",
|
| 434 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2012-230/section-23.html",
|
| 435 |
-
"id": "SOR-2012-230-s23",
|
| 436 |
-
"text": "23 [Amendment]",
|
| 437 |
-
"citation": "New Classes of Practitioners Regs, s. 23"
|
| 438 |
-
},
|
| 439 |
-
{
|
| 440 |
-
"act_code": "SOR-2012-230",
|
| 441 |
-
"act_short": "New Classes of Practitioners Regs",
|
| 442 |
-
"act_name": "New Classes of Practitioners Regulations",
|
| 443 |
-
"section": "24",
|
| 444 |
-
"marginal_note": "",
|
| 445 |
-
"part": "",
|
| 446 |
-
"division": "",
|
| 447 |
-
"heading": "Narcotic Control Regulations",
|
| 448 |
-
"history": "",
|
| 449 |
-
"last_amended": "2012-11-21",
|
| 450 |
-
"in_force": "2012-11-21",
|
| 451 |
-
"status": "in force",
|
| 452 |
-
"current_to": "2025-12-02",
|
| 453 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2012-230/section-24.html",
|
| 454 |
-
"id": "SOR-2012-230-s24",
|
| 455 |
-
"text": "24 [Amendment]",
|
| 456 |
-
"citation": "New Classes of Practitioners Regs, s. 24"
|
| 457 |
-
},
|
| 458 |
-
{
|
| 459 |
-
"act_code": "SOR-2012-230",
|
| 460 |
-
"act_short": "New Classes of Practitioners Regs",
|
| 461 |
-
"act_name": "New Classes of Practitioners Regulations",
|
| 462 |
-
"section": "25",
|
| 463 |
-
"marginal_note": "",
|
| 464 |
-
"part": "",
|
| 465 |
-
"division": "",
|
| 466 |
-
"heading": "Benzodiazepines and Other Targeted Substances Regulations",
|
| 467 |
-
"history": "",
|
| 468 |
-
"last_amended": "2012-11-21",
|
| 469 |
-
"in_force": "2012-11-21",
|
| 470 |
-
"status": "in force",
|
| 471 |
-
"current_to": "2025-12-02",
|
| 472 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2012-230/section-25.html",
|
| 473 |
-
"id": "SOR-2012-230-s25",
|
| 474 |
-
"text": "25 [Amendments]",
|
| 475 |
-
"citation": "New Classes of Practitioners Regs, s. 25"
|
| 476 |
-
},
|
| 477 |
-
{
|
| 478 |
-
"act_code": "SOR-2012-230",
|
| 479 |
-
"act_short": "New Classes of Practitioners Regs",
|
| 480 |
-
"act_name": "New Classes of Practitioners Regulations",
|
| 481 |
-
"section": "26",
|
| 482 |
-
"marginal_note": "",
|
| 483 |
-
"part": "",
|
| 484 |
-
"division": "",
|
| 485 |
-
"heading": "Benzodiazepines and Other Targeted Substances Regulations",
|
| 486 |
-
"history": "",
|
| 487 |
-
"last_amended": "2012-11-21",
|
| 488 |
-
"in_force": "2012-11-21",
|
| 489 |
-
"status": "in force",
|
| 490 |
-
"current_to": "2025-12-02",
|
| 491 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2012-230/section-26.html",
|
| 492 |
-
"id": "SOR-2012-230-s26",
|
| 493 |
-
"text": "26 [Amendment]",
|
| 494 |
-
"citation": "New Classes of Practitioners Regs, s. 26"
|
| 495 |
-
},
|
| 496 |
-
{
|
| 497 |
-
"act_code": "SOR-2012-230",
|
| 498 |
-
"act_short": "New Classes of Practitioners Regs",
|
| 499 |
-
"act_name": "New Classes of Practitioners Regulations",
|
| 500 |
-
"section": "27",
|
| 501 |
-
"marginal_note": "",
|
| 502 |
-
"part": "",
|
| 503 |
-
"division": "",
|
| 504 |
-
"heading": "Benzodiazepines and Other Targeted Substances Regulations",
|
| 505 |
-
"history": "",
|
| 506 |
-
"last_amended": "2012-11-21",
|
| 507 |
-
"in_force": "2012-11-21",
|
| 508 |
-
"status": "in force",
|
| 509 |
-
"current_to": "2025-12-02",
|
| 510 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2012-230/section-27.html",
|
| 511 |
-
"id": "SOR-2012-230-s27",
|
| 512 |
-
"text": "27 [Amendment]",
|
| 513 |
-
"citation": "New Classes of Practitioners Regs, s. 27"
|
| 514 |
-
},
|
| 515 |
{
|
| 516 |
"act_code": "SOR-2012-230",
|
| 517 |
"act_short": "New Classes of Practitioners Regs",
|
|
|
|
| 94 |
"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.",
|
| 95 |
"citation": "New Classes of Practitioners Regs, s. 5"
|
| 96 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 97 |
{
|
| 98 |
"act_code": "SOR-2012-230",
|
| 99 |
"act_short": "New Classes of Practitioners Regs",
|
|
@@ -7941,595 +7941,6 @@
|
|
| 7941 |
"text": "377\n(1) The following systems are deemed to be recognized under Part 7:\n(a) any inspection system of a foreign state for meat products that was, immediately before the day on which these Regulations come into force, approved for the purposes of the Meat Inspection Act;\n(b) any inspection system of a foreign state for live or raw shellfish if that foreign state was, immediately before the day on which these Regulations come into force, authorized in respect of the import of those shellfish into Canada for the purposes of the Fish Inspection Act; and\n(c) any systems of manufacturing, processing, treating, preserving, handling, testing, grading, coding, slaughtering, storing, packaging and labelling that are used in an establishment in a foreign state in relation to meat products if, immediately before the day on which these Regulations come into force, both the establishment and the inspection system of the foreign state for those meat products were approved for the purposes of the Meat Inspection Act.\n(2) [Suspension and cancellation] For greater certainty, the recognition of any system referred to in subsection (1) may be suspended or cancelled in accordance with Part 7.",
|
| 7942 |
"citation": "Safe Food for Canadians Regs, s. 377"
|
| 7943 |
},
|
| 7944 |
-
{
|
| 7945 |
-
"act_code": "SOR-2018-108",
|
| 7946 |
-
"act_short": "Safe Food for Canadians Regs",
|
| 7947 |
-
"act_name": "Safe Food for Canadians Regulations",
|
| 7948 |
-
"section": "378",
|
| 7949 |
-
"marginal_note": "",
|
| 7950 |
-
"part": "PART 16 - Consequential Amendments, Repeals and Coming into Force",
|
| 7951 |
-
"division": "",
|
| 7952 |
-
"heading": "EEC Aged Cheddar Cheese Export Regulations",
|
| 7953 |
-
"history": "",
|
| 7954 |
-
"last_amended": "2019-01-15",
|
| 7955 |
-
"in_force": "2019-01-15",
|
| 7956 |
-
"status": "in force",
|
| 7957 |
-
"current_to": "2025-09-29",
|
| 7958 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2018-108/section-378.html",
|
| 7959 |
-
"id": "SOR-2018-108-s378",
|
| 7960 |
-
"text": "378 [Amendment]",
|
| 7961 |
-
"citation": "Safe Food for Canadians Regs, s. 378"
|
| 7962 |
-
},
|
| 7963 |
-
{
|
| 7964 |
-
"act_code": "SOR-2018-108",
|
| 7965 |
-
"act_short": "Safe Food for Canadians Regs",
|
| 7966 |
-
"act_name": "Safe Food for Canadians Regulations",
|
| 7967 |
-
"section": "379",
|
| 7968 |
-
"marginal_note": "",
|
| 7969 |
-
"part": "PART 16 - Consequential Amendments, Repeals and Coming into Force",
|
| 7970 |
-
"division": "",
|
| 7971 |
-
"heading": "Consumer Packaging and Labelling Regulations",
|
| 7972 |
-
"history": "",
|
| 7973 |
-
"last_amended": "2019-01-15",
|
| 7974 |
-
"in_force": "2019-01-15",
|
| 7975 |
-
"status": "in force",
|
| 7976 |
-
"current_to": "2025-09-29",
|
| 7977 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2018-108/section-379.html",
|
| 7978 |
-
"id": "SOR-2018-108-s379",
|
| 7979 |
-
"text": "379 [Amendment]",
|
| 7980 |
-
"citation": "Safe Food for Canadians Regs, s. 379"
|
| 7981 |
-
},
|
| 7982 |
-
{
|
| 7983 |
-
"act_code": "SOR-2018-108",
|
| 7984 |
-
"act_short": "Safe Food for Canadians Regs",
|
| 7985 |
-
"act_name": "Safe Food for Canadians Regulations",
|
| 7986 |
-
"section": "380",
|
| 7987 |
-
"marginal_note": "",
|
| 7988 |
-
"part": "PART 16 - Consequential Amendments, Repeals and Coming into Force",
|
| 7989 |
-
"division": "",
|
| 7990 |
-
"heading": "Consumer Packaging and Labelling Regulations",
|
| 7991 |
-
"history": "",
|
| 7992 |
-
"last_amended": "2019-01-15",
|
| 7993 |
-
"in_force": "2019-01-15",
|
| 7994 |
-
"status": "in force",
|
| 7995 |
-
"current_to": "2025-09-29",
|
| 7996 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2018-108/section-380.html",
|
| 7997 |
-
"id": "SOR-2018-108-s380",
|
| 7998 |
-
"text": "380 [Amendment]",
|
| 7999 |
-
"citation": "Safe Food for Canadians Regs, s. 380"
|
| 8000 |
-
},
|
| 8001 |
-
{
|
| 8002 |
-
"act_code": "SOR-2018-108",
|
| 8003 |
-
"act_short": "Safe Food for Canadians Regs",
|
| 8004 |
-
"act_name": "Safe Food for Canadians Regulations",
|
| 8005 |
-
"section": "381",
|
| 8006 |
-
"marginal_note": "",
|
| 8007 |
-
"part": "PART 16 - Consequential Amendments, Repeals and Coming into Force",
|
| 8008 |
-
"division": "",
|
| 8009 |
-
"heading": "Consumer Packaging and Labelling Regulations",
|
| 8010 |
-
"history": "",
|
| 8011 |
-
"last_amended": "2019-01-15",
|
| 8012 |
-
"in_force": "2019-01-15",
|
| 8013 |
-
"status": "in force",
|
| 8014 |
-
"current_to": "2025-09-29",
|
| 8015 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2018-108/section-381.html",
|
| 8016 |
-
"id": "SOR-2018-108-s381",
|
| 8017 |
-
"text": "381 [Amendments]",
|
| 8018 |
-
"citation": "Safe Food for Canadians Regs, s. 381"
|
| 8019 |
-
},
|
| 8020 |
-
{
|
| 8021 |
-
"act_code": "SOR-2018-108",
|
| 8022 |
-
"act_short": "Safe Food for Canadians Regs",
|
| 8023 |
-
"act_name": "Safe Food for Canadians Regulations",
|
| 8024 |
-
"section": "382",
|
| 8025 |
-
"marginal_note": "",
|
| 8026 |
-
"part": "PART 16 - Consequential Amendments, Repeals and Coming into Force",
|
| 8027 |
-
"division": "",
|
| 8028 |
-
"heading": "Consumer Packaging and Labelling Regulations",
|
| 8029 |
-
"history": "",
|
| 8030 |
-
"last_amended": "2019-01-15",
|
| 8031 |
-
"in_force": "2019-01-15",
|
| 8032 |
-
"status": "in force",
|
| 8033 |
-
"current_to": "2025-09-29",
|
| 8034 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2018-108/section-382.html",
|
| 8035 |
-
"id": "SOR-2018-108-s382",
|
| 8036 |
-
"text": "382 [Amendment]",
|
| 8037 |
-
"citation": "Safe Food for Canadians Regs, s. 382"
|
| 8038 |
-
},
|
| 8039 |
-
{
|
| 8040 |
-
"act_code": "SOR-2018-108",
|
| 8041 |
-
"act_short": "Safe Food for Canadians Regs",
|
| 8042 |
-
"act_name": "Safe Food for Canadians Regulations",
|
| 8043 |
-
"section": "383",
|
| 8044 |
-
"marginal_note": "",
|
| 8045 |
-
"part": "PART 16 - Consequential Amendments, Repeals and Coming into Force",
|
| 8046 |
-
"division": "",
|
| 8047 |
-
"heading": "Consumer Packaging and Labelling Regulations",
|
| 8048 |
-
"history": "",
|
| 8049 |
-
"last_amended": "2019-01-15",
|
| 8050 |
-
"in_force": "2019-01-15",
|
| 8051 |
-
"status": "in force",
|
| 8052 |
-
"current_to": "2025-09-29",
|
| 8053 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2018-108/section-383.html",
|
| 8054 |
-
"id": "SOR-2018-108-s383",
|
| 8055 |
-
"text": "383 [Amendment]",
|
| 8056 |
-
"citation": "Safe Food for Canadians Regs, s. 383"
|
| 8057 |
-
},
|
| 8058 |
-
{
|
| 8059 |
-
"act_code": "SOR-2018-108",
|
| 8060 |
-
"act_short": "Safe Food for Canadians Regs",
|
| 8061 |
-
"act_name": "Safe Food for Canadians Regulations",
|
| 8062 |
-
"section": "384",
|
| 8063 |
-
"marginal_note": "",
|
| 8064 |
-
"part": "PART 16 - Consequential Amendments, Repeals and Coming into Force",
|
| 8065 |
-
"division": "",
|
| 8066 |
-
"heading": "Consumer Packaging and Labelling Regulations",
|
| 8067 |
-
"history": "",
|
| 8068 |
-
"last_amended": "2019-01-15",
|
| 8069 |
-
"in_force": "2019-01-15",
|
| 8070 |
-
"status": "in force",
|
| 8071 |
-
"current_to": "2025-09-29",
|
| 8072 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2018-108/section-384.html",
|
| 8073 |
-
"id": "SOR-2018-108-s384",
|
| 8074 |
-
"text": "384 [Amendment]",
|
| 8075 |
-
"citation": "Safe Food for Canadians Regs, s. 384"
|
| 8076 |
-
},
|
| 8077 |
-
{
|
| 8078 |
-
"act_code": "SOR-2018-108",
|
| 8079 |
-
"act_short": "Safe Food for Canadians Regs",
|
| 8080 |
-
"act_name": "Safe Food for Canadians Regulations",
|
| 8081 |
-
"section": "385",
|
| 8082 |
-
"marginal_note": "",
|
| 8083 |
-
"part": "PART 16 - Consequential Amendments, Repeals and Coming into Force",
|
| 8084 |
-
"division": "",
|
| 8085 |
-
"heading": "Consumer Packaging and Labelling Regulations",
|
| 8086 |
-
"history": "",
|
| 8087 |
-
"last_amended": "2019-01-15",
|
| 8088 |
-
"in_force": "2019-01-15",
|
| 8089 |
-
"status": "in force",
|
| 8090 |
-
"current_to": "2025-09-29",
|
| 8091 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2018-108/section-385.html",
|
| 8092 |
-
"id": "SOR-2018-108-s385",
|
| 8093 |
-
"text": "385 [Amendments]",
|
| 8094 |
-
"citation": "Safe Food for Canadians Regs, s. 385"
|
| 8095 |
-
},
|
| 8096 |
-
{
|
| 8097 |
-
"act_code": "SOR-2018-108",
|
| 8098 |
-
"act_short": "Safe Food for Canadians Regs",
|
| 8099 |
-
"act_name": "Safe Food for Canadians Regulations",
|
| 8100 |
-
"section": "386",
|
| 8101 |
-
"marginal_note": "",
|
| 8102 |
-
"part": "PART 16 - Consequential Amendments, Repeals and Coming into Force",
|
| 8103 |
-
"division": "",
|
| 8104 |
-
"heading": "Consumer Packaging and Labelling Regulations",
|
| 8105 |
-
"history": "",
|
| 8106 |
-
"last_amended": "2019-01-15",
|
| 8107 |
-
"in_force": "2019-01-15",
|
| 8108 |
-
"status": "in force",
|
| 8109 |
-
"current_to": "2025-09-29",
|
| 8110 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2018-108/section-386.html",
|
| 8111 |
-
"id": "SOR-2018-108-s386",
|
| 8112 |
-
"text": "386 [Amendment]",
|
| 8113 |
-
"citation": "Safe Food for Canadians Regs, s. 386"
|
| 8114 |
-
},
|
| 8115 |
-
{
|
| 8116 |
-
"act_code": "SOR-2018-108",
|
| 8117 |
-
"act_short": "Safe Food for Canadians Regs",
|
| 8118 |
-
"act_name": "Safe Food for Canadians Regulations",
|
| 8119 |
-
"section": "387",
|
| 8120 |
-
"marginal_note": "",
|
| 8121 |
-
"part": "PART 16 - Consequential Amendments, Repeals and Coming into Force",
|
| 8122 |
-
"division": "",
|
| 8123 |
-
"heading": "Consumer Packaging and Labelling Regulations",
|
| 8124 |
-
"history": "",
|
| 8125 |
-
"last_amended": "2019-01-15",
|
| 8126 |
-
"in_force": "2019-01-15",
|
| 8127 |
-
"status": "in force",
|
| 8128 |
-
"current_to": "2025-09-29",
|
| 8129 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2018-108/section-387.html",
|
| 8130 |
-
"id": "SOR-2018-108-s387",
|
| 8131 |
-
"text": "387 [Amendment]",
|
| 8132 |
-
"citation": "Safe Food for Canadians Regs, s. 387"
|
| 8133 |
-
},
|
| 8134 |
-
{
|
| 8135 |
-
"act_code": "SOR-2018-108",
|
| 8136 |
-
"act_short": "Safe Food for Canadians Regs",
|
| 8137 |
-
"act_name": "Safe Food for Canadians Regulations",
|
| 8138 |
-
"section": "388",
|
| 8139 |
-
"marginal_note": "",
|
| 8140 |
-
"part": "PART 16 - Consequential Amendments, Repeals and Coming into Force",
|
| 8141 |
-
"division": "",
|
| 8142 |
-
"heading": "Consumer Packaging and Labelling Regulations",
|
| 8143 |
-
"history": "",
|
| 8144 |
-
"last_amended": "2019-01-15",
|
| 8145 |
-
"in_force": "2019-01-15",
|
| 8146 |
-
"status": "in force",
|
| 8147 |
-
"current_to": "2025-09-29",
|
| 8148 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2018-108/section-388.html",
|
| 8149 |
-
"id": "SOR-2018-108-s388",
|
| 8150 |
-
"text": "388 [Amendment]",
|
| 8151 |
-
"citation": "Safe Food for Canadians Regs, s. 388"
|
| 8152 |
-
},
|
| 8153 |
-
{
|
| 8154 |
-
"act_code": "SOR-2018-108",
|
| 8155 |
-
"act_short": "Safe Food for Canadians Regs",
|
| 8156 |
-
"act_name": "Safe Food for Canadians Regulations",
|
| 8157 |
-
"section": "389",
|
| 8158 |
-
"marginal_note": "",
|
| 8159 |
-
"part": "PART 16 - Consequential Amendments, Repeals and Coming into Force",
|
| 8160 |
-
"division": "",
|
| 8161 |
-
"heading": "Consumer Packaging and Labelling Regulations",
|
| 8162 |
-
"history": "",
|
| 8163 |
-
"last_amended": "2019-01-15",
|
| 8164 |
-
"in_force": "2019-01-15",
|
| 8165 |
-
"status": "in force",
|
| 8166 |
-
"current_to": "2025-09-29",
|
| 8167 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2018-108/section-389.html",
|
| 8168 |
-
"id": "SOR-2018-108-s389",
|
| 8169 |
-
"text": "389 [Amendment]",
|
| 8170 |
-
"citation": "Safe Food for Canadians Regs, s. 389"
|
| 8171 |
-
},
|
| 8172 |
-
{
|
| 8173 |
-
"act_code": "SOR-2018-108",
|
| 8174 |
-
"act_short": "Safe Food for Canadians Regs",
|
| 8175 |
-
"act_name": "Safe Food for Canadians Regulations",
|
| 8176 |
-
"section": "390",
|
| 8177 |
-
"marginal_note": "",
|
| 8178 |
-
"part": "PART 16 - Consequential Amendments, Repeals and Coming into Force",
|
| 8179 |
-
"division": "",
|
| 8180 |
-
"heading": "Consumer Packaging and Labelling Regulations",
|
| 8181 |
-
"history": "",
|
| 8182 |
-
"last_amended": "2019-01-15",
|
| 8183 |
-
"in_force": "2019-01-15",
|
| 8184 |
-
"status": "in force",
|
| 8185 |
-
"current_to": "2025-09-29",
|
| 8186 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2018-108/section-390.html",
|
| 8187 |
-
"id": "SOR-2018-108-s390",
|
| 8188 |
-
"text": "390 [Amendment]",
|
| 8189 |
-
"citation": "Safe Food for Canadians Regs, s. 390"
|
| 8190 |
-
},
|
| 8191 |
-
{
|
| 8192 |
-
"act_code": "SOR-2018-108",
|
| 8193 |
-
"act_short": "Safe Food for Canadians Regs",
|
| 8194 |
-
"act_name": "Safe Food for Canadians Regulations",
|
| 8195 |
-
"section": "391",
|
| 8196 |
-
"marginal_note": "",
|
| 8197 |
-
"part": "PART 16 - Consequential Amendments, Repeals and Coming into Force",
|
| 8198 |
-
"division": "",
|
| 8199 |
-
"heading": "Regulations Excluding Certain Indictable Offences from the Definition of “Designated Offence”",
|
| 8200 |
-
"history": "",
|
| 8201 |
-
"last_amended": "2019-01-15",
|
| 8202 |
-
"in_force": "2019-01-15",
|
| 8203 |
-
"status": "in force",
|
| 8204 |
-
"current_to": "2025-09-29",
|
| 8205 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2018-108/section-391.html",
|
| 8206 |
-
"id": "SOR-2018-108-s391",
|
| 8207 |
-
"text": "391 [Amendments]",
|
| 8208 |
-
"citation": "Safe Food for Canadians Regs, s. 391"
|
| 8209 |
-
},
|
| 8210 |
-
{
|
| 8211 |
-
"act_code": "SOR-2018-108",
|
| 8212 |
-
"act_short": "Safe Food for Canadians Regs",
|
| 8213 |
-
"act_name": "Safe Food for Canadians Regulations",
|
| 8214 |
-
"section": "392",
|
| 8215 |
-
"marginal_note": "",
|
| 8216 |
-
"part": "PART 16 - Consequential Amendments, Repeals and Coming into Force",
|
| 8217 |
-
"division": "",
|
| 8218 |
-
"heading": "Feeds Regulations, 1983",
|
| 8219 |
-
"history": "",
|
| 8220 |
-
"last_amended": "2019-01-15",
|
| 8221 |
-
"in_force": "2019-01-15",
|
| 8222 |
-
"status": "in force",
|
| 8223 |
-
"current_to": "2025-09-29",
|
| 8224 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2018-108/section-392.html",
|
| 8225 |
-
"id": "SOR-2018-108-s392",
|
| 8226 |
-
"text": "392 [Amendment]",
|
| 8227 |
-
"citation": "Safe Food for Canadians Regs, s. 392"
|
| 8228 |
-
},
|
| 8229 |
-
{
|
| 8230 |
-
"act_code": "SOR-2018-108",
|
| 8231 |
-
"act_short": "Safe Food for Canadians Regs",
|
| 8232 |
-
"act_name": "Safe Food for Canadians Regulations",
|
| 8233 |
-
"section": "393",
|
| 8234 |
-
"marginal_note": "",
|
| 8235 |
-
"part": "PART 16 - Consequential Amendments, Repeals and Coming into Force",
|
| 8236 |
-
"division": "",
|
| 8237 |
-
"heading": "Food and Drug Regulations",
|
| 8238 |
-
"history": "",
|
| 8239 |
-
"last_amended": "2019-01-15",
|
| 8240 |
-
"in_force": "2019-01-15",
|
| 8241 |
-
"status": "in force",
|
| 8242 |
-
"current_to": "2025-09-29",
|
| 8243 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2018-108/section-393.html",
|
| 8244 |
-
"id": "SOR-2018-108-s393",
|
| 8245 |
-
"text": "393 [Amendments]",
|
| 8246 |
-
"citation": "Safe Food for Canadians Regs, s. 393"
|
| 8247 |
-
},
|
| 8248 |
-
{
|
| 8249 |
-
"act_code": "SOR-2018-108",
|
| 8250 |
-
"act_short": "Safe Food for Canadians Regs",
|
| 8251 |
-
"act_name": "Safe Food for Canadians Regulations",
|
| 8252 |
-
"section": "394",
|
| 8253 |
-
"marginal_note": "",
|
| 8254 |
-
"part": "PART 16 - Consequential Amendments, Repeals and Coming into Force",
|
| 8255 |
-
"division": "",
|
| 8256 |
-
"heading": "Food and Drug Regulations",
|
| 8257 |
-
"history": "",
|
| 8258 |
-
"last_amended": "2019-01-15",
|
| 8259 |
-
"in_force": "2019-01-15",
|
| 8260 |
-
"status": "in force",
|
| 8261 |
-
"current_to": "2025-09-29",
|
| 8262 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2018-108/section-394.html",
|
| 8263 |
-
"id": "SOR-2018-108-s394",
|
| 8264 |
-
"text": "394 [Amendment]",
|
| 8265 |
-
"citation": "Safe Food for Canadians Regs, s. 394"
|
| 8266 |
-
},
|
| 8267 |
-
{
|
| 8268 |
-
"act_code": "SOR-2018-108",
|
| 8269 |
-
"act_short": "Safe Food for Canadians Regs",
|
| 8270 |
-
"act_name": "Safe Food for Canadians Regulations",
|
| 8271 |
-
"section": "395",
|
| 8272 |
-
"marginal_note": "",
|
| 8273 |
-
"part": "PART 16 - Consequential Amendments, Repeals and Coming into Force",
|
| 8274 |
-
"division": "",
|
| 8275 |
-
"heading": "Food and Drug Regulations",
|
| 8276 |
-
"history": "",
|
| 8277 |
-
"last_amended": "2019-01-15",
|
| 8278 |
-
"in_force": "2019-01-15",
|
| 8279 |
-
"status": "in force",
|
| 8280 |
-
"current_to": "2025-09-29",
|
| 8281 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2018-108/section-395.html",
|
| 8282 |
-
"id": "SOR-2018-108-s395",
|
| 8283 |
-
"text": "395 [Amendment]",
|
| 8284 |
-
"citation": "Safe Food for Canadians Regs, s. 395"
|
| 8285 |
-
},
|
| 8286 |
-
{
|
| 8287 |
-
"act_code": "SOR-2018-108",
|
| 8288 |
-
"act_short": "Safe Food for Canadians Regs",
|
| 8289 |
-
"act_name": "Safe Food for Canadians Regulations",
|
| 8290 |
-
"section": "396",
|
| 8291 |
-
"marginal_note": "",
|
| 8292 |
-
"part": "PART 16 - Consequential Amendments, Repeals and Coming into Force",
|
| 8293 |
-
"division": "",
|
| 8294 |
-
"heading": "Food and Drug Regulations",
|
| 8295 |
-
"history": "",
|
| 8296 |
-
"last_amended": "2019-01-15",
|
| 8297 |
-
"in_force": "2019-01-15",
|
| 8298 |
-
"status": "in force",
|
| 8299 |
-
"current_to": "2025-09-29",
|
| 8300 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2018-108/section-396.html",
|
| 8301 |
-
"id": "SOR-2018-108-s396",
|
| 8302 |
-
"text": "396 [Amendment]",
|
| 8303 |
-
"citation": "Safe Food for Canadians Regs, s. 396"
|
| 8304 |
-
},
|
| 8305 |
-
{
|
| 8306 |
-
"act_code": "SOR-2018-108",
|
| 8307 |
-
"act_short": "Safe Food for Canadians Regs",
|
| 8308 |
-
"act_name": "Safe Food for Canadians Regulations",
|
| 8309 |
-
"section": "397",
|
| 8310 |
-
"marginal_note": "",
|
| 8311 |
-
"part": "PART 16 - Consequential Amendments, Repeals and Coming into Force",
|
| 8312 |
-
"division": "",
|
| 8313 |
-
"heading": "Food and Drug Regulations",
|
| 8314 |
-
"history": "",
|
| 8315 |
-
"last_amended": "2019-01-15",
|
| 8316 |
-
"in_force": "2019-01-15",
|
| 8317 |
-
"status": "in force",
|
| 8318 |
-
"current_to": "2025-09-29",
|
| 8319 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2018-108/section-397.html",
|
| 8320 |
-
"id": "SOR-2018-108-s397",
|
| 8321 |
-
"text": "397 [Amendment]",
|
| 8322 |
-
"citation": "Safe Food for Canadians Regs, s. 397"
|
| 8323 |
-
},
|
| 8324 |
-
{
|
| 8325 |
-
"act_code": "SOR-2018-108",
|
| 8326 |
-
"act_short": "Safe Food for Canadians Regs",
|
| 8327 |
-
"act_name": "Safe Food for Canadians Regulations",
|
| 8328 |
-
"section": "398",
|
| 8329 |
-
"marginal_note": "",
|
| 8330 |
-
"part": "PART 16 - Consequential Amendments, Repeals and Coming into Force",
|
| 8331 |
-
"division": "",
|
| 8332 |
-
"heading": "Food and Drug Regulations",
|
| 8333 |
-
"history": "",
|
| 8334 |
-
"last_amended": "2019-01-15",
|
| 8335 |
-
"in_force": "2019-01-15",
|
| 8336 |
-
"status": "in force",
|
| 8337 |
-
"current_to": "2025-09-29",
|
| 8338 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2018-108/section-398.html",
|
| 8339 |
-
"id": "SOR-2018-108-s398",
|
| 8340 |
-
"text": "398 [Amendments]",
|
| 8341 |
-
"citation": "Safe Food for Canadians Regs, s. 398"
|
| 8342 |
-
},
|
| 8343 |
-
{
|
| 8344 |
-
"act_code": "SOR-2018-108",
|
| 8345 |
-
"act_short": "Safe Food for Canadians Regs",
|
| 8346 |
-
"act_name": "Safe Food for Canadians Regulations",
|
| 8347 |
-
"section": "399",
|
| 8348 |
-
"marginal_note": "",
|
| 8349 |
-
"part": "PART 16 - Consequential Amendments, Repeals and Coming into Force",
|
| 8350 |
-
"division": "",
|
| 8351 |
-
"heading": "Food and Drug Regulations",
|
| 8352 |
-
"history": "",
|
| 8353 |
-
"last_amended": "2019-01-15",
|
| 8354 |
-
"in_force": "2019-01-15",
|
| 8355 |
-
"status": "in force",
|
| 8356 |
-
"current_to": "2025-09-29",
|
| 8357 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2018-108/section-399.html",
|
| 8358 |
-
"id": "SOR-2018-108-s399",
|
| 8359 |
-
"text": "399 [Amendment]",
|
| 8360 |
-
"citation": "Safe Food for Canadians Regs, s. 399"
|
| 8361 |
-
},
|
| 8362 |
-
{
|
| 8363 |
-
"act_code": "SOR-2018-108",
|
| 8364 |
-
"act_short": "Safe Food for Canadians Regs",
|
| 8365 |
-
"act_name": "Safe Food for Canadians Regulations",
|
| 8366 |
-
"section": "400",
|
| 8367 |
-
"marginal_note": "",
|
| 8368 |
-
"part": "PART 16 - Consequential Amendments, Repeals and Coming into Force",
|
| 8369 |
-
"division": "",
|
| 8370 |
-
"heading": "Food and Drug Regulations",
|
| 8371 |
-
"history": "",
|
| 8372 |
-
"last_amended": "2019-01-15",
|
| 8373 |
-
"in_force": "2019-01-15",
|
| 8374 |
-
"status": "in force",
|
| 8375 |
-
"current_to": "2025-09-29",
|
| 8376 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2018-108/section-400.html",
|
| 8377 |
-
"id": "SOR-2018-108-s400",
|
| 8378 |
-
"text": "400 [Amendment]",
|
| 8379 |
-
"citation": "Safe Food for Canadians Regs, s. 400"
|
| 8380 |
-
},
|
| 8381 |
-
{
|
| 8382 |
-
"act_code": "SOR-2018-108",
|
| 8383 |
-
"act_short": "Safe Food for Canadians Regs",
|
| 8384 |
-
"act_name": "Safe Food for Canadians Regulations",
|
| 8385 |
-
"section": "401",
|
| 8386 |
-
"marginal_note": "",
|
| 8387 |
-
"part": "PART 16 - Consequential Amendments, Repeals and Coming into Force",
|
| 8388 |
-
"division": "",
|
| 8389 |
-
"heading": "Seeds Regulations",
|
| 8390 |
-
"history": "",
|
| 8391 |
-
"last_amended": "2019-01-15",
|
| 8392 |
-
"in_force": "2019-01-15",
|
| 8393 |
-
"status": "in force",
|
| 8394 |
-
"current_to": "2025-09-29",
|
| 8395 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2018-108/section-401.html",
|
| 8396 |
-
"id": "SOR-2018-108-s401",
|
| 8397 |
-
"text": "401 [Amendments]",
|
| 8398 |
-
"citation": "Safe Food for Canadians Regs, s. 401"
|
| 8399 |
-
},
|
| 8400 |
-
{
|
| 8401 |
-
"act_code": "SOR-2018-108",
|
| 8402 |
-
"act_short": "Safe Food for Canadians Regs",
|
| 8403 |
-
"act_name": "Safe Food for Canadians Regulations",
|
| 8404 |
-
"section": "402",
|
| 8405 |
-
"marginal_note": "",
|
| 8406 |
-
"part": "PART 16 - Consequential Amendments, Repeals and Coming into Force",
|
| 8407 |
-
"division": "",
|
| 8408 |
-
"heading": "Seeds Regulations",
|
| 8409 |
-
"history": "",
|
| 8410 |
-
"last_amended": "2019-01-15",
|
| 8411 |
-
"in_force": "2019-01-15",
|
| 8412 |
-
"status": "in force",
|
| 8413 |
-
"current_to": "2025-09-29",
|
| 8414 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2018-108/section-402.html",
|
| 8415 |
-
"id": "SOR-2018-108-s402",
|
| 8416 |
-
"text": "402 [Amendment]",
|
| 8417 |
-
"citation": "Safe Food for Canadians Regs, s. 402"
|
| 8418 |
-
},
|
| 8419 |
-
{
|
| 8420 |
-
"act_code": "SOR-2018-108",
|
| 8421 |
-
"act_short": "Safe Food for Canadians Regs",
|
| 8422 |
-
"act_name": "Safe Food for Canadians Regulations",
|
| 8423 |
-
"section": "403",
|
| 8424 |
-
"marginal_note": "",
|
| 8425 |
-
"part": "PART 16 - Consequential Amendments, Repeals and Coming into Force",
|
| 8426 |
-
"division": "",
|
| 8427 |
-
"heading": "Health of Animals Regulations",
|
| 8428 |
-
"history": "",
|
| 8429 |
-
"last_amended": "2019-01-15",
|
| 8430 |
-
"in_force": "2019-01-15",
|
| 8431 |
-
"status": "in force",
|
| 8432 |
-
"current_to": "2025-09-29",
|
| 8433 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2018-108/section-403.html",
|
| 8434 |
-
"id": "SOR-2018-108-s403",
|
| 8435 |
-
"text": "403 [Amendments]",
|
| 8436 |
-
"citation": "Safe Food for Canadians Regs, s. 403"
|
| 8437 |
-
},
|
| 8438 |
-
{
|
| 8439 |
-
"act_code": "SOR-2018-108",
|
| 8440 |
-
"act_short": "Safe Food for Canadians Regs",
|
| 8441 |
-
"act_name": "Safe Food for Canadians Regulations",
|
| 8442 |
-
"section": "404",
|
| 8443 |
-
"marginal_note": "",
|
| 8444 |
-
"part": "PART 16 - Consequential Amendments, Repeals and Coming into Force",
|
| 8445 |
-
"division": "",
|
| 8446 |
-
"heading": "Health of Animals Regulations",
|
| 8447 |
-
"history": "",
|
| 8448 |
-
"last_amended": "2019-01-15",
|
| 8449 |
-
"in_force": "2019-01-15",
|
| 8450 |
-
"status": "in force",
|
| 8451 |
-
"current_to": "2025-09-29",
|
| 8452 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2018-108/section-404.html",
|
| 8453 |
-
"id": "SOR-2018-108-s404",
|
| 8454 |
-
"text": "404 [Amendment]",
|
| 8455 |
-
"citation": "Safe Food for Canadians Regs, s. 404"
|
| 8456 |
-
},
|
| 8457 |
-
{
|
| 8458 |
-
"act_code": "SOR-2018-108",
|
| 8459 |
-
"act_short": "Safe Food for Canadians Regs",
|
| 8460 |
-
"act_name": "Safe Food for Canadians Regulations",
|
| 8461 |
-
"section": "405",
|
| 8462 |
-
"marginal_note": "",
|
| 8463 |
-
"part": "PART 16 - Consequential Amendments, Repeals and Coming into Force",
|
| 8464 |
-
"division": "",
|
| 8465 |
-
"heading": "Health of Animals Regulations",
|
| 8466 |
-
"history": "",
|
| 8467 |
-
"last_amended": "2019-01-15",
|
| 8468 |
-
"in_force": "2019-01-15",
|
| 8469 |
-
"status": "in force",
|
| 8470 |
-
"current_to": "2025-09-29",
|
| 8471 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2018-108/section-405.html",
|
| 8472 |
-
"id": "SOR-2018-108-s405",
|
| 8473 |
-
"text": "405 [Amendment]",
|
| 8474 |
-
"citation": "Safe Food for Canadians Regs, s. 405"
|
| 8475 |
-
},
|
| 8476 |
-
{
|
| 8477 |
-
"act_code": "SOR-2018-108",
|
| 8478 |
-
"act_short": "Safe Food for Canadians Regs",
|
| 8479 |
-
"act_name": "Safe Food for Canadians Regulations",
|
| 8480 |
-
"section": "406",
|
| 8481 |
-
"marginal_note": "",
|
| 8482 |
-
"part": "PART 16 - Consequential Amendments, Repeals and Coming into Force",
|
| 8483 |
-
"division": "",
|
| 8484 |
-
"heading": "Health of Animals Regulations",
|
| 8485 |
-
"history": "",
|
| 8486 |
-
"last_amended": "2019-01-15",
|
| 8487 |
-
"in_force": "2019-01-15",
|
| 8488 |
-
"status": "in force",
|
| 8489 |
-
"current_to": "2025-09-29",
|
| 8490 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2018-108/section-406.html",
|
| 8491 |
-
"id": "SOR-2018-108-s406",
|
| 8492 |
-
"text": "406 [Amendment]",
|
| 8493 |
-
"citation": "Safe Food for Canadians Regs, s. 406"
|
| 8494 |
-
},
|
| 8495 |
-
{
|
| 8496 |
-
"act_code": "SOR-2018-108",
|
| 8497 |
-
"act_short": "Safe Food for Canadians Regs",
|
| 8498 |
-
"act_name": "Safe Food for Canadians Regulations",
|
| 8499 |
-
"section": "407",
|
| 8500 |
-
"marginal_note": "",
|
| 8501 |
-
"part": "PART 16 - Consequential Amendments, Repeals and Coming into Force",
|
| 8502 |
-
"division": "",
|
| 8503 |
-
"heading": "Industrial Hemp Regulations",
|
| 8504 |
-
"history": "",
|
| 8505 |
-
"last_amended": "2019-01-15",
|
| 8506 |
-
"in_force": "2019-01-15",
|
| 8507 |
-
"status": "in force",
|
| 8508 |
-
"current_to": "2025-09-29",
|
| 8509 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2018-108/section-407.html",
|
| 8510 |
-
"id": "SOR-2018-108-s407",
|
| 8511 |
-
"text": "407 [Amendment]",
|
| 8512 |
-
"citation": "Safe Food for Canadians Regs, s. 407"
|
| 8513 |
-
},
|
| 8514 |
-
{
|
| 8515 |
-
"act_code": "SOR-2018-108",
|
| 8516 |
-
"act_short": "Safe Food for Canadians Regs",
|
| 8517 |
-
"act_name": "Safe Food for Canadians Regulations",
|
| 8518 |
-
"section": "408",
|
| 8519 |
-
"marginal_note": "",
|
| 8520 |
-
"part": "PART 16 - Consequential Amendments, Repeals and Coming into Force",
|
| 8521 |
-
"division": "",
|
| 8522 |
-
"heading": "Determination of Country of Origin for the Purposes of Marking Goods (NAFTA Countries) Regulations",
|
| 8523 |
-
"history": "",
|
| 8524 |
-
"last_amended": "2019-01-15",
|
| 8525 |
-
"in_force": "2019-01-15",
|
| 8526 |
-
"status": "in force",
|
| 8527 |
-
"current_to": "2025-09-29",
|
| 8528 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2018-108/section-408.html",
|
| 8529 |
-
"id": "SOR-2018-108-s408",
|
| 8530 |
-
"text": "408 [Amendment]",
|
| 8531 |
-
"citation": "Safe Food for Canadians Regs, s. 408"
|
| 8532 |
-
},
|
| 8533 |
{
|
| 8534 |
"act_code": "SOR-2018-108",
|
| 8535 |
"act_short": "Safe Food for Canadians Regs",
|
|
|
|
| 7941 |
"text": "377\n(1) The following systems are deemed to be recognized under Part 7:\n(a) any inspection system of a foreign state for meat products that was, immediately before the day on which these Regulations come into force, approved for the purposes of the Meat Inspection Act;\n(b) any inspection system of a foreign state for live or raw shellfish if that foreign state was, immediately before the day on which these Regulations come into force, authorized in respect of the import of those shellfish into Canada for the purposes of the Fish Inspection Act; and\n(c) any systems of manufacturing, processing, treating, preserving, handling, testing, grading, coding, slaughtering, storing, packaging and labelling that are used in an establishment in a foreign state in relation to meat products if, immediately before the day on which these Regulations come into force, both the establishment and the inspection system of the foreign state for those meat products were approved for the purposes of the Meat Inspection Act.\n(2) [Suspension and cancellation] For greater certainty, the recognition of any system referred to in subsection (1) may be suspended or cancelled in accordance with Part 7.",
|
| 7942 |
"citation": "Safe Food for Canadians Regs, s. 377"
|
| 7943 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 7944 |
{
|
| 7945 |
"act_code": "SOR-2018-108",
|
| 7946 |
"act_short": "Safe Food for Canadians Regs",
|
|
@@ -10544,177 +10544,6 @@
|
|
| 10544 |
"text": "365 For the purposes of subsection 241(1), the information that the holder of a licence that is deemed by section 354 or 355 to be a licence for cultivation, processing or sale would otherwise be required to include in the record referred to in that subsection in the first 90 days after the day on which these Regulations come into force is not required to be included until the 91st day after that day.",
|
| 10545 |
"citation": "Cannabis Regs, s. 365"
|
| 10546 |
},
|
| 10547 |
-
{
|
| 10548 |
-
"act_code": "SOR-2018-144",
|
| 10549 |
-
"act_short": "Cannabis Regs",
|
| 10550 |
-
"act_name": "Cannabis Regulations",
|
| 10551 |
-
"section": "366",
|
| 10552 |
-
"marginal_note": "",
|
| 10553 |
-
"part": "PART 16 - Consequential Amendments and Coming into Force",
|
| 10554 |
-
"division": "",
|
| 10555 |
-
"heading": "Food and Drug Regulations",
|
| 10556 |
-
"history": "",
|
| 10557 |
-
"last_amended": "2018-10-17",
|
| 10558 |
-
"in_force": "2018-10-17",
|
| 10559 |
-
"status": "in force",
|
| 10560 |
-
"current_to": "2025-12-02",
|
| 10561 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2018-144/section-366.html",
|
| 10562 |
-
"id": "SOR-2018-144-s366",
|
| 10563 |
-
"text": "366 [Amendment]",
|
| 10564 |
-
"citation": "Cannabis Regs, s. 366"
|
| 10565 |
-
},
|
| 10566 |
-
{
|
| 10567 |
-
"act_code": "SOR-2018-144",
|
| 10568 |
-
"act_short": "Cannabis Regs",
|
| 10569 |
-
"act_name": "Cannabis Regulations",
|
| 10570 |
-
"section": "367",
|
| 10571 |
-
"marginal_note": "",
|
| 10572 |
-
"part": "PART 16 - Consequential Amendments and Coming into Force",
|
| 10573 |
-
"division": "",
|
| 10574 |
-
"heading": "Food and Drug Regulations",
|
| 10575 |
-
"history": "",
|
| 10576 |
-
"last_amended": "2018-10-17",
|
| 10577 |
-
"in_force": "2018-10-17",
|
| 10578 |
-
"status": "in force",
|
| 10579 |
-
"current_to": "2025-12-02",
|
| 10580 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2018-144/section-367.html",
|
| 10581 |
-
"id": "SOR-2018-144-s367",
|
| 10582 |
-
"text": "367 [Amendment]",
|
| 10583 |
-
"citation": "Cannabis Regs, s. 367"
|
| 10584 |
-
},
|
| 10585 |
-
{
|
| 10586 |
-
"act_code": "SOR-2018-144",
|
| 10587 |
-
"act_short": "Cannabis Regs",
|
| 10588 |
-
"act_name": "Cannabis Regulations",
|
| 10589 |
-
"section": "368",
|
| 10590 |
-
"marginal_note": "",
|
| 10591 |
-
"part": "PART 16 - Consequential Amendments and Coming into Force",
|
| 10592 |
-
"division": "",
|
| 10593 |
-
"heading": "Food and Drug Regulations",
|
| 10594 |
-
"history": "",
|
| 10595 |
-
"last_amended": "2018-10-17",
|
| 10596 |
-
"in_force": "2018-10-17",
|
| 10597 |
-
"status": "in force",
|
| 10598 |
-
"current_to": "2025-12-02",
|
| 10599 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2018-144/section-368.html",
|
| 10600 |
-
"id": "SOR-2018-144-s368",
|
| 10601 |
-
"text": "368 [Amendment]",
|
| 10602 |
-
"citation": "Cannabis Regs, s. 368"
|
| 10603 |
-
},
|
| 10604 |
-
{
|
| 10605 |
-
"act_code": "SOR-2018-144",
|
| 10606 |
-
"act_short": "Cannabis Regs",
|
| 10607 |
-
"act_name": "Cannabis Regulations",
|
| 10608 |
-
"section": "369",
|
| 10609 |
-
"marginal_note": "",
|
| 10610 |
-
"part": "PART 16 - Consequential Amendments and Coming into Force",
|
| 10611 |
-
"division": "",
|
| 10612 |
-
"heading": "Food and Drug Regulations",
|
| 10613 |
-
"history": "",
|
| 10614 |
-
"last_amended": "2018-10-17",
|
| 10615 |
-
"in_force": "2018-10-17",
|
| 10616 |
-
"status": "in force",
|
| 10617 |
-
"current_to": "2025-12-02",
|
| 10618 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2018-144/section-369.html",
|
| 10619 |
-
"id": "SOR-2018-144-s369",
|
| 10620 |
-
"text": "369 [Amendment]",
|
| 10621 |
-
"citation": "Cannabis Regs, s. 369"
|
| 10622 |
-
},
|
| 10623 |
-
{
|
| 10624 |
-
"act_code": "SOR-2018-144",
|
| 10625 |
-
"act_short": "Cannabis Regs",
|
| 10626 |
-
"act_name": "Cannabis Regulations",
|
| 10627 |
-
"section": "370",
|
| 10628 |
-
"marginal_note": "",
|
| 10629 |
-
"part": "PART 16 - Consequential Amendments and Coming into Force",
|
| 10630 |
-
"division": "",
|
| 10631 |
-
"heading": "Food and Drug Regulations",
|
| 10632 |
-
"history": "",
|
| 10633 |
-
"last_amended": "2018-10-17",
|
| 10634 |
-
"in_force": "2018-10-17",
|
| 10635 |
-
"status": "in force",
|
| 10636 |
-
"current_to": "2025-12-02",
|
| 10637 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2018-144/section-370.html",
|
| 10638 |
-
"id": "SOR-2018-144-s370",
|
| 10639 |
-
"text": "370 [Amendment]",
|
| 10640 |
-
"citation": "Cannabis Regs, s. 370"
|
| 10641 |
-
},
|
| 10642 |
-
{
|
| 10643 |
-
"act_code": "SOR-2018-144",
|
| 10644 |
-
"act_short": "Cannabis Regs",
|
| 10645 |
-
"act_name": "Cannabis Regulations",
|
| 10646 |
-
"section": "371",
|
| 10647 |
-
"marginal_note": "",
|
| 10648 |
-
"part": "PART 16 - Consequential Amendments and Coming into Force",
|
| 10649 |
-
"division": "",
|
| 10650 |
-
"heading": "Medical Devices Regulations",
|
| 10651 |
-
"history": "",
|
| 10652 |
-
"last_amended": "2018-10-17",
|
| 10653 |
-
"in_force": "2018-10-17",
|
| 10654 |
-
"status": "in force",
|
| 10655 |
-
"current_to": "2025-12-02",
|
| 10656 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2018-144/section-371.html",
|
| 10657 |
-
"id": "SOR-2018-144-s371",
|
| 10658 |
-
"text": "371 [Amendment]",
|
| 10659 |
-
"citation": "Cannabis Regs, s. 371"
|
| 10660 |
-
},
|
| 10661 |
-
{
|
| 10662 |
-
"act_code": "SOR-2018-144",
|
| 10663 |
-
"act_short": "Cannabis Regs",
|
| 10664 |
-
"act_name": "Cannabis Regulations",
|
| 10665 |
-
"section": "372",
|
| 10666 |
-
"marginal_note": "",
|
| 10667 |
-
"part": "PART 16 - Consequential Amendments and Coming into Force",
|
| 10668 |
-
"division": "",
|
| 10669 |
-
"heading": "Natural Health Products Regulations",
|
| 10670 |
-
"history": "",
|
| 10671 |
-
"last_amended": "2018-10-17",
|
| 10672 |
-
"in_force": "2018-10-17",
|
| 10673 |
-
"status": "in force",
|
| 10674 |
-
"current_to": "2025-12-02",
|
| 10675 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2018-144/section-372.html",
|
| 10676 |
-
"id": "SOR-2018-144-s372",
|
| 10677 |
-
"text": "372 [Amendment]",
|
| 10678 |
-
"citation": "Cannabis Regs, s. 372"
|
| 10679 |
-
},
|
| 10680 |
-
{
|
| 10681 |
-
"act_code": "SOR-2018-144",
|
| 10682 |
-
"act_short": "Cannabis Regs",
|
| 10683 |
-
"act_name": "Cannabis Regulations",
|
| 10684 |
-
"section": "373",
|
| 10685 |
-
"marginal_note": "",
|
| 10686 |
-
"part": "PART 16 - Consequential Amendments and Coming into Force",
|
| 10687 |
-
"division": "",
|
| 10688 |
-
"heading": "Cannabis Exemption (Food and Drugs Act) Regulations",
|
| 10689 |
-
"history": "",
|
| 10690 |
-
"last_amended": "2018-10-17",
|
| 10691 |
-
"in_force": "2018-10-17",
|
| 10692 |
-
"status": "in force",
|
| 10693 |
-
"current_to": "2025-12-02",
|
| 10694 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2018-144/section-373.html",
|
| 10695 |
-
"id": "SOR-2018-144-s373",
|
| 10696 |
-
"text": "373 [Amendment]",
|
| 10697 |
-
"citation": "Cannabis Regs, s. 373"
|
| 10698 |
-
},
|
| 10699 |
-
{
|
| 10700 |
-
"act_code": "SOR-2018-144",
|
| 10701 |
-
"act_short": "Cannabis Regs",
|
| 10702 |
-
"act_name": "Cannabis Regulations",
|
| 10703 |
-
"section": "374",
|
| 10704 |
-
"marginal_note": "",
|
| 10705 |
-
"part": "PART 16 - Consequential Amendments and Coming into Force",
|
| 10706 |
-
"division": "",
|
| 10707 |
-
"heading": "Cannabis Regulations",
|
| 10708 |
-
"history": "",
|
| 10709 |
-
"last_amended": "2019-01-15",
|
| 10710 |
-
"in_force": "2019-01-15",
|
| 10711 |
-
"status": "in force",
|
| 10712 |
-
"current_to": "2025-12-02",
|
| 10713 |
-
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-2018-144/section-374.html",
|
| 10714 |
-
"id": "SOR-2018-144-s374",
|
| 10715 |
-
"text": "374 [Amendment]",
|
| 10716 |
-
"citation": "Cannabis Regs, s. 374"
|
| 10717 |
-
},
|
| 10718 |
{
|
| 10719 |
"act_code": "SOR-2018-144",
|
| 10720 |
"act_short": "Cannabis Regs",
|
|
|
|
| 10544 |
"text": "365 For the purposes of subsection 241(1), the information that the holder of a licence that is deemed by section 354 or 355 to be a licence for cultivation, processing or sale would otherwise be required to include in the record referred to in that subsection in the first 90 days after the day on which these Regulations come into force is not required to be included until the 91st day after that day.",
|
| 10545 |
"citation": "Cannabis Regs, s. 365"
|
| 10546 |
},
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 10547 |
{
|
| 10548 |
"act_code": "SOR-2018-144",
|
| 10549 |
"act_short": "Cannabis Regs",
|
|
@@ -0,0 +1,876 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"act_code": "SOR-86-1062",
|
| 4 |
+
"act_short": "Accounting for Imported Goods Regs",
|
| 5 |
+
"act_name": "Accounting for Imported Goods and Payment of Duties Regulations",
|
| 6 |
+
"section": "1",
|
| 7 |
+
"marginal_note": "",
|
| 8 |
+
"part": "",
|
| 9 |
+
"division": "",
|
| 10 |
+
"heading": "",
|
| 11 |
+
"history": "",
|
| 12 |
+
"last_amended": "2018-06-12",
|
| 13 |
+
"in_force": "2018-06-12",
|
| 14 |
+
"status": "repealed",
|
| 15 |
+
"current_to": "2025-05-27",
|
| 16 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-1062/section-1.html",
|
| 17 |
+
"id": "SOR-86-1062-s1",
|
| 18 |
+
"text": "1 [Repealed, SOR/2018-121, s. 2]",
|
| 19 |
+
"citation": "Accounting for Imported Goods Regs, s. 1"
|
| 20 |
+
},
|
| 21 |
+
{
|
| 22 |
+
"act_code": "SOR-86-1062",
|
| 23 |
+
"act_short": "Accounting for Imported Goods Regs",
|
| 24 |
+
"act_name": "Accounting for Imported Goods and Payment of Duties Regulations",
|
| 25 |
+
"section": "2",
|
| 26 |
+
"marginal_note": "",
|
| 27 |
+
"part": "",
|
| 28 |
+
"division": "",
|
| 29 |
+
"heading": "Interpretation",
|
| 30 |
+
"history": "SOR/88-515, ss. 1, 12(F); SOR/91-83, s. 1; SOR/92-129, s. 1; SOR/92-409, s. 1; SOR/92-410, s. 1; SOR/95-419, s. 1; SOR/96-150, s. 1; SOR/97-112, ss. 1, 7(T); SOR/98-53, s. 5; SOR/2001-197, s. 2; SOR/2005-210, s. 1; SOR/2005-383, s. 1; SOR/2006-152, s. 1; SOR/2011-208, s. 2; SOR/2024-41, s. 12",
|
| 31 |
+
"last_amended": "2024-10-21",
|
| 32 |
+
"in_force": "2011-09-30",
|
| 33 |
+
"status": "in force",
|
| 34 |
+
"current_to": "2025-05-27",
|
| 35 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-1062/section-2.html",
|
| 36 |
+
"id": "SOR-86-1062-s2-p1",
|
| 37 |
+
"text": "2 In these Regulations,\nAct means the Customs Act; (Loi)\nA.T.A. Carnet[Repealed, SOR/2001-197, s. 2]\nautomotive production goods[Repealed, SOR/2006-152, s. 1]\nautomotive service goods[Repealed, SOR/2006-152, s. 1]\nbilling period[Repealed, SOR/2024-41, s. 12]\nbusiness day means a day other than Saturday or a holiday; (jour ouvrable)\nbusiness number means the unique number assigned to a person by the Minister of National Revenue; (numéro d’entreprise)\nCADEX[Repealed, SOR/96-150, s. 1]\ncasual goods means goods imported into Canada other than commercial goods; (marchandises occasionnelles)\nchief officer of customs[Repealed, SOR/2024-41, s. 12]\ncommercial goods means goods imported into Canada for sale or for any commercial, industrial, occupational, institutional or other like use; (marchandises commerciales)\ncourier means a commercial carrier that is engaged in scheduled international transportation of shipments of goods other than goods imported as mail; (messager)\nCSA authorization means a customs self-assessment authorization issued under section 10.5; (autorisation PAD)\nCSA carrier means a carrier that holds a CSA authorization; (transporteur PAD)\nCSA importer means an importer that holds a CSA authorization; (importateur PAD)\ncustoms invoice means a customs invoice in the prescribed form; (facture douanière)\nElectronic Commerce Client Requirements Document means the Electronic Commerce Client Requirements Document established by the Agency, as amended from time to time; (document sur les exigences à l’égard des clients du commerce électronique)",
|
| 38 |
+
"citation": "Accounting for Imported Goods Regs, s. 2 (part 1 of 2)"
|
| 39 |
+
},
|
| 40 |
+
{
|
| 41 |
+
"act_code": "SOR-86-1062",
|
| 42 |
+
"act_short": "Accounting for Imported Goods Regs",
|
| 43 |
+
"act_name": "Accounting for Imported Goods and Payment of Duties Regulations",
|
| 44 |
+
"section": "2",
|
| 45 |
+
"marginal_note": "",
|
| 46 |
+
"part": "",
|
| 47 |
+
"division": "",
|
| 48 |
+
"heading": "Interpretation",
|
| 49 |
+
"history": "SOR/88-515, ss. 1, 12(F); SOR/91-83, s. 1; SOR/92-129, s. 1; SOR/92-409, s. 1; SOR/92-410, s. 1; SOR/95-419, s. 1; SOR/96-150, s. 1; SOR/97-112, ss. 1, 7(T); SOR/98-53, s. 5; SOR/2001-197, s. 2; SOR/2005-210, s. 1; SOR/2005-383, s. 1; SOR/2006-152, s. 1; SOR/2011-208, s. 2; SOR/2024-41, s. 12",
|
| 50 |
+
"last_amended": "2024-10-21",
|
| 51 |
+
"in_force": "2011-09-30",
|
| 52 |
+
"status": "in force",
|
| 53 |
+
"current_to": "2025-05-27",
|
| 54 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-1062/section-2.html",
|
| 55 |
+
"id": "SOR-86-1062-s2-p2",
|
| 56 |
+
"text": "eligible goods means commercial goods that have been shipped directly from the United States or Mexico and for which there is no requirement under any Act of Parliament or of the legislature of a province or any regulation made under such an Act that a permit, licence or other similar document be provided to the Agency before the goods are released; (marchandises admissibles)\nintoxicating liquor[Repealed, SOR/2005-210, s. 1]\nList of Tariff Provisions means the List of Tariff Provisions set out in the schedule to the Customs Tariff; (liste des dispositions tarifaires)\nparticipants’ requirements document[Repealed, SOR/2006-152, s. 1]\nrelease period, in respect of the release of goods imported as mail, means the period beginning on the first day of the month in which the goods are released and ending on the last day of that month; (période de dédouanement)\nspecified commercial vehicle[Repealed, SOR/2006-152, s. 1]\nvehicle[Repealed, SOR/2006-152, s. 1]\nvessel means any of the goods described in Chapter 89 of the Customs Tariff; (bateau)\nweekday means a Monday, Tuesday, Wednesday, Thursday or Friday, including any holiday that falls on one of those days. (jour de semaine)",
|
| 57 |
+
"citation": "Accounting for Imported Goods Regs, s. 2 (part 2 of 2)"
|
| 58 |
+
},
|
| 59 |
+
{
|
| 60 |
+
"act_code": "SOR-86-1062",
|
| 61 |
+
"act_short": "Accounting for Imported Goods Regs",
|
| 62 |
+
"act_name": "Accounting for Imported Goods and Payment of Duties Regulations",
|
| 63 |
+
"section": "2.1",
|
| 64 |
+
"marginal_note": "",
|
| 65 |
+
"part": "",
|
| 66 |
+
"division": "",
|
| 67 |
+
"heading": "Interpretation",
|
| 68 |
+
"history": "SOR/2024-41, s. 13",
|
| 69 |
+
"last_amended": "2024-10-21",
|
| 70 |
+
"in_force": "2024-10-21",
|
| 71 |
+
"status": "in force",
|
| 72 |
+
"current_to": "2025-05-27",
|
| 73 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-1062/section-2.1.html",
|
| 74 |
+
"id": "SOR-86-1062-s2.1",
|
| 75 |
+
"text": "2.1 For the purposes of subsection 32.2(3) and paragraph 33.4(1)(a) of the Act, the prescribed day is the 10th weekday after the 17th day of the month following the month that includes the earlier of\n(a) the day on which the goods are accounted for; and\n(b) the last day on which the goods are required to be accounted for.",
|
| 76 |
+
"citation": "Accounting for Imported Goods Regs, s. 2.1"
|
| 77 |
+
},
|
| 78 |
+
{
|
| 79 |
+
"act_code": "SOR-86-1062",
|
| 80 |
+
"act_short": "Accounting for Imported Goods Regs",
|
| 81 |
+
"act_name": "Accounting for Imported Goods and Payment of Duties Regulations",
|
| 82 |
+
"section": "2.2",
|
| 83 |
+
"marginal_note": "",
|
| 84 |
+
"part": "PART I - [Repealed, SOR/2006-152, s. 2]",
|
| 85 |
+
"division": "",
|
| 86 |
+
"heading": "General Manner of Accounting",
|
| 87 |
+
"history": "SOR/2024-41, s. 14",
|
| 88 |
+
"last_amended": "2024-10-21",
|
| 89 |
+
"in_force": "2024-10-21",
|
| 90 |
+
"status": "in force",
|
| 91 |
+
"current_to": "2025-05-27",
|
| 92 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-1062/section-2.2.html",
|
| 93 |
+
"id": "SOR-86-1062-s2.2",
|
| 94 |
+
"text": "2.2\n(1) Except as otherwise provided for in the Act or these Regulations, every person required by subsection 32(1), (3) or (5) of the Act to account for goods must do so by electronic means, in accordance with the technical requirements, specifications and procedures for electronic data interchange that are set out in the Electronic Commerce Client Requirements Document.\n(2) Despite subsection (1), the Minister may require that goods be accounted for by any other means that is made available or specified by the Minister for that purpose if the Minister determines that\n(a) the infrastructure is inadequate or incompatible with the electronic means set out in the Electronic Commerce Client Requirements Document;\n(b) a natural disaster, a national crisis or any other exceptional circumstance prevents or impedes the use of the electronic means or makes using them unreliable; or\n(c) it is impracticable for a person, due to circumstances outside of their control, to account for goods by the electronic means.",
|
| 95 |
+
"citation": "Accounting for Imported Goods Regs, s. 2.2"
|
| 96 |
+
},
|
| 97 |
+
{
|
| 98 |
+
"act_code": "SOR-86-1062",
|
| 99 |
+
"act_short": "Accounting for Imported Goods Regs",
|
| 100 |
+
"act_name": "Accounting for Imported Goods and Payment of Duties Regulations",
|
| 101 |
+
"section": "3",
|
| 102 |
+
"marginal_note": "",
|
| 103 |
+
"part": "PART I - [Repealed, SOR/2006-152, s. 2]",
|
| 104 |
+
"division": "",
|
| 105 |
+
"heading": "General Manner of Accounting",
|
| 106 |
+
"history": "SOR/88-515, s. 2; SOR/96-150, s. 2; SOR/2005-383, ss. 2, 13; SOR/2006-152, s. 3; SOR/2024-41, s. 15",
|
| 107 |
+
"last_amended": "2024-10-21",
|
| 108 |
+
"in_force": "2006-06-23",
|
| 109 |
+
"status": "in force",
|
| 110 |
+
"current_to": "2025-05-27",
|
| 111 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-1062/section-3.html",
|
| 112 |
+
"id": "SOR-86-1062-s3",
|
| 113 |
+
"text": "3\n(1) Except as otherwise provided for in the Act or these Regulations, every person required by paragraph 32(2)(a) of the Act to make an interim accounting in respect of goods, must do so\n(a) in writing at the customs office from which the goods were released or are to be released;\n(a.1) [Repealed, SOR/2006-152, s. 3]\n(b) orally either by telephone or by other means of telecommunication at a customs office designated for that purpose by the Minister under section 5 of the Act, in the case of a person who holds an authorization to present themselves in an alternative manner under paragraph 11(b), (c) or ( e) of the Presentation of Persons (2003) Regulations; or\n(c) by electronic means in accordance with the technical requirements, specifications and procedures for electronic data interchange that are set out in the Electronic Commerce Client Requirements Document.\n(2) Every CSA importer shall account, under subsection 32(3) of the Act, for goods that have been released under subsection 32(2) of the Act by electronic means in accordance with the technical requirements, specifications and procedures for electronic data interchange that are set out in the Electronic Commerce Client Requirements Document.",
|
| 114 |
+
"citation": "Accounting for Imported Goods Regs, s. 3"
|
| 115 |
+
},
|
| 116 |
+
{
|
| 117 |
+
"act_code": "SOR-86-1062",
|
| 118 |
+
"act_short": "Accounting for Imported Goods Regs",
|
| 119 |
+
"act_name": "Accounting for Imported Goods and Payment of Duties Regulations",
|
| 120 |
+
"section": "4",
|
| 121 |
+
"marginal_note": "",
|
| 122 |
+
"part": "PART I - [Repealed, SOR/2006-152, s. 2]",
|
| 123 |
+
"division": "",
|
| 124 |
+
"heading": "General Manner of Accounting",
|
| 125 |
+
"history": "SOR/2005-383, ss. 3, 13",
|
| 126 |
+
"last_amended": "2006-03-22",
|
| 127 |
+
"in_force": "2006-03-22",
|
| 128 |
+
"status": "in force",
|
| 129 |
+
"current_to": "2025-05-27",
|
| 130 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-1062/section-4.html",
|
| 131 |
+
"id": "SOR-86-1062-s4",
|
| 132 |
+
"text": "4\n(1) Every person who accounts for goods under subsection 32(1), (3) or (5) of the Act or who makes an interim accounting in respect of goods under subsection 32(2)(a) of the Act shall provide, at the time of accounting and before the goods are released, if the goods have not been released before that time, every certificate, licence, permit or other document and any information that is required to be provided under the Act or these Regulations or under any other Act of Parliament or regulations made pursuant thereto that prohibits, controls or regulates the importation of goods.\n(2) Subsection (1) does not apply to a CSA importer in respect of goods released under paragraph 32(2)(b) of the Act.",
|
| 133 |
+
"citation": "Accounting for Imported Goods Regs, s. 4"
|
| 134 |
+
},
|
| 135 |
+
{
|
| 136 |
+
"act_code": "SOR-86-1062",
|
| 137 |
+
"act_short": "Accounting for Imported Goods Regs",
|
| 138 |
+
"act_name": "Accounting for Imported Goods and Payment of Duties Regulations",
|
| 139 |
+
"section": "5",
|
| 140 |
+
"marginal_note": "",
|
| 141 |
+
"part": "PART I - [Repealed, SOR/2006-152, s. 2]",
|
| 142 |
+
"division": "",
|
| 143 |
+
"heading": "General Requirements Respecting the Accounting for and Payment of Duties on Casual Goods",
|
| 144 |
+
"history": "SOR/2005-383, s. 4; SOR/2006-152, s. 4; SOR/2024-41, s. 16",
|
| 145 |
+
"last_amended": "2024-10-21",
|
| 146 |
+
"in_force": "2006-06-23",
|
| 147 |
+
"status": "in force",
|
| 148 |
+
"current_to": "2025-05-27",
|
| 149 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-1062/section-5.html",
|
| 150 |
+
"id": "SOR-86-1062-s5",
|
| 151 |
+
"text": "5\n(1) Every person who accounts for casual goods under subsection 32(1), (3) or (5) of the Act shall provide, at the time of accounting and before the goods are released, if the goods have not been released before that time, a commercial invoice, current price list, bill of sale or other similar document that describes the goods and contains information sufficient to enable an officer to determine the tariff classification and appraise the value for duty of the goods.\n(2) [Repealed, SOR/2024-41, s. 16]",
|
| 152 |
+
"citation": "Accounting for Imported Goods Regs, s. 5"
|
| 153 |
+
},
|
| 154 |
+
{
|
| 155 |
+
"act_code": "SOR-86-1062",
|
| 156 |
+
"act_short": "Accounting for Imported Goods Regs",
|
| 157 |
+
"act_name": "Accounting for Imported Goods and Payment of Duties Regulations",
|
| 158 |
+
"section": "5.1",
|
| 159 |
+
"marginal_note": "",
|
| 160 |
+
"part": "PART I - [Repealed, SOR/2006-152, s. 2]",
|
| 161 |
+
"division": "",
|
| 162 |
+
"heading": "General Requirements Respecting the Accounting for and Payment of Duties on Casual Goods",
|
| 163 |
+
"history": "SOR/88-515, s. 4",
|
| 164 |
+
"last_amended": "2006-03-22",
|
| 165 |
+
"in_force": "2006-03-22",
|
| 166 |
+
"status": "in force",
|
| 167 |
+
"current_to": "2025-05-27",
|
| 168 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-1062/section-5.1.html",
|
| 169 |
+
"id": "SOR-86-1062-s5.1",
|
| 170 |
+
"text": "5.1\n(1) Subject to subsection (2) and sections 7 and 8, casual goods may be released prior to the payment of duties thereon, if the importer or owner of the goods provides, as conditional payment of an amount equal to the amount of these duties\n(a) a remittance by credit card in respect of which the importer or owner of the goods is the cardholder or authorized user, where the issuer of the credit card has entered into an agreement with the Government of Canada establishing the conditions of its acceptance and use; or\n(b) a traveller’s cheque, a money order or a certified cheque.\n(2) Where casual goods are released prior to the unconditional payment of duties thereon, the person who accounted for the goods shall pay the duties thereon within five days after their release.",
|
| 171 |
+
"citation": "Accounting for Imported Goods Regs, s. 5.1"
|
| 172 |
+
},
|
| 173 |
+
{
|
| 174 |
+
"act_code": "SOR-86-1062",
|
| 175 |
+
"act_short": "Accounting for Imported Goods Regs",
|
| 176 |
+
"act_name": "Accounting for Imported Goods and Payment of Duties Regulations",
|
| 177 |
+
"section": "6",
|
| 178 |
+
"marginal_note": "",
|
| 179 |
+
"part": "PART I - [Repealed, SOR/2006-152, s. 2]",
|
| 180 |
+
"division": "",
|
| 181 |
+
"heading": "General Requirements Respecting the Accounting for Commercial Goods",
|
| 182 |
+
"history": "SOR/90-615, s. 1; SOR/96-150, s. 3; SOR/2005-383, s. 5; SOR/2014-271, s. 1; SOR/2024-199, s. 1",
|
| 183 |
+
"last_amended": "2024-10-07",
|
| 184 |
+
"in_force": "2014-11-21",
|
| 185 |
+
"status": "in force",
|
| 186 |
+
"current_to": "2025-05-27",
|
| 187 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-1062/section-6.html",
|
| 188 |
+
"id": "SOR-86-1062-s6",
|
| 189 |
+
"text": "6\n(1) Every person who accounts for commercial goods under subsection 32(1), (3) or (5) of the Act shall provide, at the time of accounting and before the goods are released, if the goods have not been released before that time,\n(a) in the case of goods that have an estimated value for duty exceeding $3,300,\n(i) a completed customs invoice,\n(ii) the commercial invoice, where the invoice contains the same information as would a completed customs invoice, or\n(iii) the commercial invoice and a partially completed customs invoice, where together they contain the same information as would a completed customs invoice; and\n(b) in the case of goods that have an estimated value for duty not exceeding $3,300, a commercial invoice, current price list, bill of sale or other similar document that describes the goods, denotes the number of units being imported and contains information sufficient to enable an officer to determine the tariff classification and appraise the value for duty of the goods.\n(2) Subsection (1) does not apply to a CSA importer in respect of goods released under paragraph 32(2)(b) of the Act.",
|
| 190 |
+
"citation": "Accounting for Imported Goods Regs, s. 6"
|
| 191 |
+
},
|
| 192 |
+
{
|
| 193 |
+
"act_code": "SOR-86-1062",
|
| 194 |
+
"act_short": "Accounting for Imported Goods Regs",
|
| 195 |
+
"act_name": "Accounting for Imported Goods and Payment of Duties Regulations",
|
| 196 |
+
"section": "7",
|
| 197 |
+
"marginal_note": "",
|
| 198 |
+
"part": "PART I - [Repealed, SOR/2006-152, s. 2]",
|
| 199 |
+
"division": "",
|
| 200 |
+
"heading": "Release Without Accounting",
|
| 201 |
+
"history": "SOR/88-515, s. 5; SOR/92-410, s. 3; SOR/95-409, s. 3; SOR/95-419, s. 2; SOR/96-150, s. 4; SOR/98-53, s. 6; SOR/2005-176, s. 1; SOR/2011-208, s. 3; SOR/2014-271, s. 2; SOR/2024-199, s. 1",
|
| 202 |
+
"last_amended": "2024-10-07",
|
| 203 |
+
"in_force": "2014-11-21",
|
| 204 |
+
"status": "in force",
|
| 205 |
+
"current_to": "2025-05-27",
|
| 206 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-1062/section-7.html",
|
| 207 |
+
"id": "SOR-86-1062-s7-p1",
|
| 208 |
+
"text": "7\n(1) Subject to subsection (3), the following goods may be released without any requirement of accounting under section 32 of the Act if the goods are not charged with duties and may be reported orally under paragraphs 5(1)(a) to (d) of the Reporting of Imported Goods Regulations:\n(a) goods, other than vessels, classified under tariff item No. 9801.00.10 or 9803.00.00 in the List of Tariff Provisions;\n(b) commercial conveyances manufactured in Canada that are classified under tariff item No. 9813.00.00 in the List of Tariff Provisions;\n(c) commercial conveyances previously accounted for in Canada under the Customs Act that are classified under tariff item No. 9814.00.00 in the List of Tariff Provisions;\n(d) goods classified under tariff item No. 9816.00.00 in the List of Tariff Provisions, if the goods are not imported as mail; and\n(e) goods eligible for temporary importation classified under tariff item No. 9993.00.00 in the List of Tariff Provisions.\n(f) [Repealed, SOR/95-409, s. 3]\n(g) [Repealed, SOR/98-53, s. 6]\n(2) Subject to subsection (3), the following goods may be released without any requirement of accounting under section 32 of the Act if the goods are not charged with duties:\n(a) vessels classified under tariff item No. 9801.00.20 or 9803.00.00 in the List of Tariff Provisions; and\n(b) goods classified under tariff item No. 9813.00.00 or 9814.00.00 in the List of Tariff Provisions that form part of the baggage of a person arriving in Canada, whether or not the person and the baggage are carried on board the same conveyance.\n(c) [Repealed, SOR/98-53, s. 6]\n(2.1) Subject to subsection (3), the following goods may be released without any requirement of accounting under section 32 of the Act:",
|
| 209 |
+
"citation": "Accounting for Imported Goods Regs, s. 7 (part 1 of 2)"
|
| 210 |
+
},
|
| 211 |
+
{
|
| 212 |
+
"act_code": "SOR-86-1062",
|
| 213 |
+
"act_short": "Accounting for Imported Goods Regs",
|
| 214 |
+
"act_name": "Accounting for Imported Goods and Payment of Duties Regulations",
|
| 215 |
+
"section": "7",
|
| 216 |
+
"marginal_note": "",
|
| 217 |
+
"part": "PART I - [Repealed, SOR/2006-152, s. 2]",
|
| 218 |
+
"division": "",
|
| 219 |
+
"heading": "Release Without Accounting",
|
| 220 |
+
"history": "SOR/88-515, s. 5; SOR/92-410, s. 3; SOR/95-409, s. 3; SOR/95-419, s. 2; SOR/96-150, s. 4; SOR/98-53, s. 6; SOR/2005-176, s. 1; SOR/2011-208, s. 3; SOR/2014-271, s. 2; SOR/2024-199, s. 1",
|
| 221 |
+
"last_amended": "2024-10-07",
|
| 222 |
+
"in_force": "2014-11-21",
|
| 223 |
+
"status": "in force",
|
| 224 |
+
"current_to": "2025-05-27",
|
| 225 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-1062/section-7.html",
|
| 226 |
+
"id": "SOR-86-1062-s7-p2",
|
| 227 |
+
"text": "(a) goods to which the Postal Imports Remission Order or the Courier Imports Remission Order applies;\n(b) goods imported as mail and classified under tariff item No. 9816.00.00 in the List of Tariff Provisions;\n(c) goods classified under tariff item No. 9804.10.00, 9804.20.00 or 9804.40.00 in the List of Tariff Provisions, if the goods are reported orally under paragraphs 5(1)(a) to (d) of the Reporting of Imported Goods Regulations; and\n(d) goods that have an estimated value for duty not exceeding $3,300, if\n(i) the goods are not charged with duties other than the tax imposed under Part IX of the Excise Tax Act,\n(ii) the goods are goods to which section 7.1 of Schedule VII to the Excise Tax Act applies, and\n(iii) the supplier of the goods is registered in accordance with Subdivision d of Division V of Part IX of the Excise Tax Act.\n(3) Goods may be released in accordance with subsection (1), (2) or (2.1) on condition that the importer or owner of the goods provides, prior to the release of the goods, every certificate, licence, permit or other document and any information that is required to be provided under any Act of Parliament that prohibits, controls or regulates the importation of goods or a regulation made pursuant to such an Act.\n(4) [Repealed, SOR/2011-208, s. 3]",
|
| 228 |
+
"citation": "Accounting for Imported Goods Regs, s. 7 (part 2 of 2)"
|
| 229 |
+
},
|
| 230 |
+
{
|
| 231 |
+
"act_code": "SOR-86-1062",
|
| 232 |
+
"act_short": "Accounting for Imported Goods Regs",
|
| 233 |
+
"act_name": "Accounting for Imported Goods and Payment of Duties Regulations",
|
| 234 |
+
"section": "7.1",
|
| 235 |
+
"marginal_note": "",
|
| 236 |
+
"part": "PART I - [Repealed, SOR/2006-152, s. 2]",
|
| 237 |
+
"division": "",
|
| 238 |
+
"heading": "Release of Goods Imported by Courier Prior to Accounting and Prior to Payment of Duties",
|
| 239 |
+
"history": "SOR/95-419, s. 3; SOR/96-150, s. 5; SOR/2005-210, s. 4; SOR/2006-152, s. 22; SOR/2014-271, s. 3; SOR/2024-199, s. 1",
|
| 240 |
+
"last_amended": "2024-10-07",
|
| 241 |
+
"in_force": "2014-11-21",
|
| 242 |
+
"status": "in force",
|
| 243 |
+
"current_to": "2025-05-27",
|
| 244 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-1062/section-7.1.html",
|
| 245 |
+
"id": "SOR-86-1062-s7.1",
|
| 246 |
+
"text": "7.1 Notwithstanding sections 5 and 5.1 and subject to sections 7, 7.2 and 7.3, goods imported by courier may be released under subsection 32(4) of the Act prior to the accounting required under subsection 32(1) of the Act and prior to the payment of the duties required under subsection 32(5) of the Act on condition that\n(a) the goods\n(i) have an estimated value for duty not exceeding $3,300,\n(ii) are not prohibited, controlled or regulated by an Act of Parliament that prohibits, controls or regulates the importation of goods or a regulation made pursuant to such an Act, and\n(iii) are released at a customs office designated for that purpose by the Minister under section 5 of the Act; and\n(b) the courier is a bonded carrier.",
|
| 247 |
+
"citation": "Accounting for Imported Goods Regs, s. 7.1"
|
| 248 |
+
},
|
| 249 |
+
{
|
| 250 |
+
"act_code": "SOR-86-1062",
|
| 251 |
+
"act_short": "Accounting for Imported Goods Regs",
|
| 252 |
+
"act_name": "Accounting for Imported Goods and Payment of Duties Regulations",
|
| 253 |
+
"section": "7.2",
|
| 254 |
+
"marginal_note": "",
|
| 255 |
+
"part": "PART I - [Repealed, SOR/2006-152, s. 2]",
|
| 256 |
+
"division": "",
|
| 257 |
+
"heading": "Release of Goods Imported by Courier Prior to Accounting and Prior to Payment of Duties",
|
| 258 |
+
"history": "SOR/95-419, s. 3; SOR/2005-210, s. 2; SOR/2024-41, s. 17",
|
| 259 |
+
"last_amended": "2024-10-21",
|
| 260 |
+
"in_force": "2006-03-22",
|
| 261 |
+
"status": "in force",
|
| 262 |
+
"current_to": "2025-05-27",
|
| 263 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-1062/section-7.2.html",
|
| 264 |
+
"id": "SOR-86-1062-s7.2",
|
| 265 |
+
"text": "7.2 Commercial goods imported by courier may be released pursuant to subsection 32(4) of the Act prior to the accounting required under subsection 32(1) of the Act and prior to the payment of duties required under paragraph 32(5)(b) of the Act on condition that\n(a) the courier has a written undertaking from the importer or the importer’s agent stating that the commercial goods will be accounted for and that the duties thereon will be paid within the prescribed time;\n(b) the importer or owner of the commercial goods has given security in accordance with section 11;\n(c) the courier has, within the 30 days preceding the release of the commercial goods and within the two business days after the date of the report made pursuant to paragraph 12(3)(b) of the Act, provided the importer or the importer’s agent with a copy of that report and any documentation accompanying the shipment of the commercial goods; and\n(d) upon request of the Minister, the courier presents evidence indicating that the courier meets the conditions set out in paragraph 7.1(b) and paragraphs (a) and (c).",
|
| 266 |
+
"citation": "Accounting for Imported Goods Regs, s. 7.2"
|
| 267 |
+
},
|
| 268 |
+
{
|
| 269 |
+
"act_code": "SOR-86-1062",
|
| 270 |
+
"act_short": "Accounting for Imported Goods Regs",
|
| 271 |
+
"act_name": "Accounting for Imported Goods and Payment of Duties Regulations",
|
| 272 |
+
"section": "7.3",
|
| 273 |
+
"marginal_note": "",
|
| 274 |
+
"part": "PART I - [Repealed, SOR/2006-152, s. 2]",
|
| 275 |
+
"division": "",
|
| 276 |
+
"heading": "Release of Goods Imported by Courier Prior to Accounting and Prior to Payment of Duties",
|
| 277 |
+
"history": "SOR/95-419, s. 3",
|
| 278 |
+
"last_amended": "2006-03-22",
|
| 279 |
+
"in_force": "2006-03-22",
|
| 280 |
+
"status": "in force",
|
| 281 |
+
"current_to": "2025-05-27",
|
| 282 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-1062/section-7.3.html",
|
| 283 |
+
"id": "SOR-86-1062-s7.3",
|
| 284 |
+
"text": "7.3 Casual goods imported by courier may be released pursuant to subsection 32(4) of the Act prior to the accounting required under subsection 32(1) of the Act and prior to the payment of duties required under paragraph 32(5)(a) of the Act on condition that\n(a) the courier reporting the casual goods is an authorized person within the meaning of section 2 of the Persons Authorized to Account for Casual Goods Regulations; and\n(b) the courier has given security in accordance with section 11.",
|
| 285 |
+
"citation": "Accounting for Imported Goods Regs, s. 7.3"
|
| 286 |
+
},
|
| 287 |
+
{
|
| 288 |
+
"act_code": "SOR-86-1062",
|
| 289 |
+
"act_short": "Accounting for Imported Goods Regs",
|
| 290 |
+
"act_name": "Accounting for Imported Goods and Payment of Duties Regulations",
|
| 291 |
+
"section": "7.4",
|
| 292 |
+
"marginal_note": "",
|
| 293 |
+
"part": "PART I - [Repealed, SOR/2006-152, s. 2]",
|
| 294 |
+
"division": "",
|
| 295 |
+
"heading": "Release of Goods Imported by Courier Prior to Accounting and Prior to Payment of Duties",
|
| 296 |
+
"history": "SOR/95-419, s. 3; SOR/2011-208, s. 4",
|
| 297 |
+
"last_amended": "2011-09-30",
|
| 298 |
+
"in_force": "2011-09-30",
|
| 299 |
+
"status": "in force",
|
| 300 |
+
"current_to": "2025-05-27",
|
| 301 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-1062/section-7.4.html",
|
| 302 |
+
"id": "SOR-86-1062-s7.4",
|
| 303 |
+
"text": "7.4 When goods have been released in accordance with sections 7.1 to 7.3, the person required by subsection 32(5) of the Act to account for the goods shall do so no later than the 24th day of the month following the month in which the goods are released.",
|
| 304 |
+
"citation": "Accounting for Imported Goods Regs, s. 7.4"
|
| 305 |
+
},
|
| 306 |
+
{
|
| 307 |
+
"act_code": "SOR-86-1062",
|
| 308 |
+
"act_short": "Accounting for Imported Goods Regs",
|
| 309 |
+
"act_name": "Accounting for Imported Goods and Payment of Duties Regulations",
|
| 310 |
+
"section": "7.5",
|
| 311 |
+
"marginal_note": "",
|
| 312 |
+
"part": "PART I - [Repealed, SOR/2006-152, s. 2]",
|
| 313 |
+
"division": "",
|
| 314 |
+
"heading": "Release of Goods Imported by Courier Prior to Accounting and Prior to Payment of Duties",
|
| 315 |
+
"history": "SOR/95-419, s. 3; SOR/2024-41, s. 18",
|
| 316 |
+
"last_amended": "2024-10-21",
|
| 317 |
+
"in_force": "2024-10-21",
|
| 318 |
+
"status": "in force",
|
| 319 |
+
"current_to": "2025-05-27",
|
| 320 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-1062/section-7.5.html",
|
| 321 |
+
"id": "SOR-86-1062-s7.5",
|
| 322 |
+
"text": "7.5 If goods have been accounted for in accordance with section 7.4, the person required by subsection 32(5) of the Act to pay the duties on the goods must do so no later than the 10th weekday after the 17th day of the month following the month in which the goods are released.",
|
| 323 |
+
"citation": "Accounting for Imported Goods Regs, s. 7.5"
|
| 324 |
+
},
|
| 325 |
+
{
|
| 326 |
+
"act_code": "SOR-86-1062",
|
| 327 |
+
"act_short": "Accounting for Imported Goods Regs",
|
| 328 |
+
"act_name": "Accounting for Imported Goods and Payment of Duties Regulations",
|
| 329 |
+
"section": "8",
|
| 330 |
+
"marginal_note": "",
|
| 331 |
+
"part": "PART I - [Repealed, SOR/2006-152, s. 2]",
|
| 332 |
+
"division": "",
|
| 333 |
+
"heading": "Release of Goods Imported as Mail",
|
| 334 |
+
"history": "SOR/92-410, s. 4; SOR/96-150, s. 6; SOR/2014-271, s. 4; SOR/2024-199, s. 1",
|
| 335 |
+
"last_amended": "2024-10-07",
|
| 336 |
+
"in_force": "2014-11-21",
|
| 337 |
+
"status": "in force",
|
| 338 |
+
"current_to": "2025-05-27",
|
| 339 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-1062/section-8.html",
|
| 340 |
+
"id": "SOR-86-1062-s8",
|
| 341 |
+
"text": "8 Goods imported as mail may be released under subsection 32(4) of the Act prior to the accounting required under subsection 32(5) of the Act and prior to the payment of duties thereon and without the giving of security pursuant to section 35 of the Act, except where the goods\n(a) are commercial goods that have an estimated value for duty exceeding $3,300; or\n(b) are prohibited, controlled or regulated by an Act of Parliament that prohibits, controls or regulates the importation of goods or a regulation made pursuant to such an Act.",
|
| 342 |
+
"citation": "Accounting for Imported Goods Regs, s. 8"
|
| 343 |
+
},
|
| 344 |
+
{
|
| 345 |
+
"act_code": "SOR-86-1062",
|
| 346 |
+
"act_short": "Accounting for Imported Goods Regs",
|
| 347 |
+
"act_name": "Accounting for Imported Goods and Payment of Duties Regulations",
|
| 348 |
+
"section": "8.1",
|
| 349 |
+
"marginal_note": "",
|
| 350 |
+
"part": "PART I - [Repealed, SOR/2006-152, s. 2]",
|
| 351 |
+
"division": "",
|
| 352 |
+
"heading": "Release of Goods Imported as Mail",
|
| 353 |
+
"history": "",
|
| 354 |
+
"last_amended": "2006-03-22",
|
| 355 |
+
"in_force": "2006-03-22",
|
| 356 |
+
"status": "repealed",
|
| 357 |
+
"current_to": "2025-05-27",
|
| 358 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-1062/section-8.1.html",
|
| 359 |
+
"id": "SOR-86-1062-s8.1",
|
| 360 |
+
"text": "8.1 [Repealed, SOR/98-186, s. 1]",
|
| 361 |
+
"citation": "Accounting for Imported Goods Regs, s. 8.1"
|
| 362 |
+
},
|
| 363 |
+
{
|
| 364 |
+
"act_code": "SOR-86-1062",
|
| 365 |
+
"act_short": "Accounting for Imported Goods Regs",
|
| 366 |
+
"act_name": "Accounting for Imported Goods and Payment of Duties Regulations",
|
| 367 |
+
"section": "8.2",
|
| 368 |
+
"marginal_note": "",
|
| 369 |
+
"part": "PART I - [Repealed, SOR/2006-152, s. 2]",
|
| 370 |
+
"division": "",
|
| 371 |
+
"heading": "Release of Goods Imported as Mail",
|
| 372 |
+
"history": "SOR/92-410, s. 4; SOR/96-150, s. 8; SOR/98-53, s. 7; SOR/2014-271, s. 5; SOR/2024-199, s. 1",
|
| 373 |
+
"last_amended": "2024-10-07",
|
| 374 |
+
"in_force": "2014-11-21",
|
| 375 |
+
"status": "in force",
|
| 376 |
+
"current_to": "2025-05-27",
|
| 377 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-1062/section-8.2.html",
|
| 378 |
+
"id": "SOR-86-1062-s8.2",
|
| 379 |
+
"text": "8.2 Subsections 147.1(3) to (13) of the Act do not apply to mail where the goods imported as mail are\n(a) goods not charged with duties;\n(b) goods in respect of which all the duties are remitted;\n(c) goods classified under tariff item No. 9816.00.00 in the List of Tariff Provisions; or\n(d) commercial goods that have an estimated value for duty exceeding $3,300.",
|
| 380 |
+
"citation": "Accounting for Imported Goods Regs, s. 8.2"
|
| 381 |
+
},
|
| 382 |
+
{
|
| 383 |
+
"act_code": "SOR-86-1062",
|
| 384 |
+
"act_short": "Accounting for Imported Goods Regs",
|
| 385 |
+
"act_name": "Accounting for Imported Goods and Payment of Duties Regulations",
|
| 386 |
+
"section": "8.3",
|
| 387 |
+
"marginal_note": "",
|
| 388 |
+
"part": "PART I - [Repealed, SOR/2006-152, s. 2]",
|
| 389 |
+
"division": "",
|
| 390 |
+
"heading": "Release of Goods Imported as Mail",
|
| 391 |
+
"history": "SOR/92-410, s. 4; SOR/2024-41, s. 19",
|
| 392 |
+
"last_amended": "2024-10-21",
|
| 393 |
+
"in_force": "2024-10-21",
|
| 394 |
+
"status": "in force",
|
| 395 |
+
"current_to": "2025-05-27",
|
| 396 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-1062/section-8.3.html",
|
| 397 |
+
"id": "SOR-86-1062-s8.3",
|
| 398 |
+
"text": "8.3\n(1) The Canada Post Corporation must pay, by means of the electronic system specified by the Minister, the duties required under subsection 147.1(6) of the Act in respect of goods imported as mail not later than the last business day of the month following the month in which the release period ends.\n(2) Despite subsection (1), the Canada Post Corporation may pay the duties described in that subsection by any other means that is made available or specified by the Minister for that purpose if the Minister determines that\n(a) the Corporation’s infrastructure is inadequate or incompatible with the electronic system specified by the Minister; or\n(b) a natural disaster, a national crisis or any other exceptional circumstance prevents or impedes the use of that system or makes using it unreliable.",
|
| 399 |
+
"citation": "Accounting for Imported Goods Regs, s. 8.3"
|
| 400 |
+
},
|
| 401 |
+
{
|
| 402 |
+
"act_code": "SOR-86-1062",
|
| 403 |
+
"act_short": "Accounting for Imported Goods Regs",
|
| 404 |
+
"act_name": "Accounting for Imported Goods and Payment of Duties Regulations",
|
| 405 |
+
"section": "9",
|
| 406 |
+
"marginal_note": "",
|
| 407 |
+
"part": "PART I - [Repealed, SOR/2006-152, s. 2]",
|
| 408 |
+
"division": "",
|
| 409 |
+
"heading": "Release of and Interim Accounting for Commercial Goods",
|
| 410 |
+
"history": "SOR/88-515, s. 6; SOR/93-555, s. 1; SOR/97-112, ss. 2, 7(T); SOR/2005-383, s. 13",
|
| 411 |
+
"last_amended": "2006-03-22",
|
| 412 |
+
"in_force": "2006-03-22",
|
| 413 |
+
"status": "in force",
|
| 414 |
+
"current_to": "2025-05-27",
|
| 415 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-1062/section-9.html",
|
| 416 |
+
"id": "SOR-86-1062-s9",
|
| 417 |
+
"text": "9 Subject to sections 7, 12 and 14, commercial goods may be released under subsection 32(2)(a) of the Act prior to the accounting required under subsection 32(1) of the Act and may, pursuant to section 33 of the Act, be so released prior to the payment of the duties thereon on condition that\n(a) the importer or owner of the commercial goods gives or has given security in accordance with section 11; and\n(b) the importer or owner of the commercial goods makes the interim accounting referred to in subsection 32(2)(a) of the Act.",
|
| 418 |
+
"citation": "Accounting for Imported Goods Regs, s. 9"
|
| 419 |
+
},
|
| 420 |
+
{
|
| 421 |
+
"act_code": "SOR-86-1062",
|
| 422 |
+
"act_short": "Accounting for Imported Goods Regs",
|
| 423 |
+
"act_name": "Accounting for Imported Goods and Payment of Duties Regulations",
|
| 424 |
+
"section": "9.1",
|
| 425 |
+
"marginal_note": "",
|
| 426 |
+
"part": "PART I - [Repealed, SOR/2006-152, s. 2]",
|
| 427 |
+
"division": "",
|
| 428 |
+
"heading": "Final Accounting and Payment of Duties for Commercial Goods After Interim Accounting (No CSA Authorization)",
|
| 429 |
+
"history": "SOR/2005-383, s. 6",
|
| 430 |
+
"last_amended": "2006-03-22",
|
| 431 |
+
"in_force": "2006-03-22",
|
| 432 |
+
"status": "in force",
|
| 433 |
+
"current_to": "2025-05-27",
|
| 434 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-1062/section-9.1.html",
|
| 435 |
+
"id": "SOR-86-1062-s9.1",
|
| 436 |
+
"text": "9.1 Sections 10 and 10.1 do not apply to a CSA importer.",
|
| 437 |
+
"citation": "Accounting for Imported Goods Regs, s. 9.1"
|
| 438 |
+
},
|
| 439 |
+
{
|
| 440 |
+
"act_code": "SOR-86-1062",
|
| 441 |
+
"act_short": "Accounting for Imported Goods Regs",
|
| 442 |
+
"act_name": "Accounting for Imported Goods and Payment of Duties Regulations",
|
| 443 |
+
"section": "10",
|
| 444 |
+
"marginal_note": "",
|
| 445 |
+
"part": "PART I - [Repealed, SOR/2006-152, s. 2]",
|
| 446 |
+
"division": "",
|
| 447 |
+
"heading": "Final Accounting and Payment of Duties for Commercial Goods After Interim Accounting (No CSA Authorization)",
|
| 448 |
+
"history": "SOR/88-515, ss. 7, 11; SOR/91-83, s. 2; SOR/94-570, s. 1; SOR/96-150, s. 9; SOR/97-112, ss. 3, 7(T); SOR/2005-210, s. 3; SOR/2005-383, ss. 7, 13; SOR/2006-152, s. 5; SOR/2014-271, s. 6; SOR/2024-41, s. 20; SOR/2024-199, s. 1",
|
| 449 |
+
"last_amended": "2024-10-21",
|
| 450 |
+
"in_force": "2024-10-21",
|
| 451 |
+
"status": "in force",
|
| 452 |
+
"current_to": "2025-05-27",
|
| 453 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-1062/section-10.html",
|
| 454 |
+
"id": "SOR-86-1062-s10",
|
| 455 |
+
"text": "10 If commercial goods are released under paragraph 32(2)(a) of the Act in accordance with section 9, the person required by the Act to account for the goods must do so in the manner described in paragraph 32(1)(a) of the Act within five business days after their release.",
|
| 456 |
+
"citation": "Accounting for Imported Goods Regs, s. 10"
|
| 457 |
+
},
|
| 458 |
+
{
|
| 459 |
+
"act_code": "SOR-86-1062",
|
| 460 |
+
"act_short": "Accounting for Imported Goods Regs",
|
| 461 |
+
"act_name": "Accounting for Imported Goods and Payment of Duties Regulations",
|
| 462 |
+
"section": "10.1",
|
| 463 |
+
"marginal_note": "",
|
| 464 |
+
"part": "PART I - [Repealed, SOR/2006-152, s. 2]",
|
| 465 |
+
"division": "",
|
| 466 |
+
"heading": "Final Accounting and Payment of Duties for Commercial Goods After Interim Accounting (No CSA Authorization)",
|
| 467 |
+
"history": "SOR/91-83, s. 2; SOR/91-280, s. 1; SOR/92-129, s. 2; SOR/93-555, s. 2; SOR/97-112, ss. 4, 7(T); SOR/2005-383, s. 8; SOR/2006-152, s. 5; SOR/2024-41, s. 20",
|
| 468 |
+
"last_amended": "2024-10-21",
|
| 469 |
+
"in_force": "2024-10-21",
|
| 470 |
+
"status": "in force",
|
| 471 |
+
"current_to": "2025-05-27",
|
| 472 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-1062/section-10.1.html",
|
| 473 |
+
"id": "SOR-86-1062-s10.1",
|
| 474 |
+
"text": "10.1 If commercial goods are released under section 33 of the Act in accordance with section 9 during a period beginning on the 18th day of a month and ending on the 17th day of the following month, the person required to pay duties on those goods must do so by the 10th weekday after the end of that period.",
|
| 475 |
+
"citation": "Accounting for Imported Goods Regs, s. 10.1"
|
| 476 |
+
},
|
| 477 |
+
{
|
| 478 |
+
"act_code": "SOR-86-1062",
|
| 479 |
+
"act_short": "Accounting for Imported Goods Regs",
|
| 480 |
+
"act_name": "Accounting for Imported Goods and Payment of Duties Regulations",
|
| 481 |
+
"section": "10.2",
|
| 482 |
+
"marginal_note": "",
|
| 483 |
+
"part": "PART I - [Repealed, SOR/2006-152, s. 2]",
|
| 484 |
+
"division": "",
|
| 485 |
+
"heading": "Release of Eligible Goods Under Paragraph 32(2)(b) of the Act",
|
| 486 |
+
"history": "SOR/2005-383, s. 9; SOR/2006-152, s. 7",
|
| 487 |
+
"last_amended": "2006-06-23",
|
| 488 |
+
"in_force": "2006-06-23",
|
| 489 |
+
"status": "in force",
|
| 490 |
+
"current_to": "2025-05-27",
|
| 491 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-1062/section-10.2.html",
|
| 492 |
+
"id": "SOR-86-1062-s10.2",
|
| 493 |
+
"text": "10.2 Eligible goods may be released under paragraph 32(2)(b) of the Act prior to the accounting required under paragraph 32(1)(a) of the Act and may be released under subsection 33(1) of the Act prior to the payment of the duties required under paragraph 32(1)(b) of the Act on condition that\n(a) the importer of those goods is a CSA importer;\n(b) the carrier that transports those goods is a CSA carrier;\n(c) when reporting the goods, the operator of the conveyance provides in bar-coded format the CSA carrier’s carrier code as assigned by the Agency and the CSA importer’s business number; and\n(d) in the case of eligible goods transported into Canada by a commercial highway conveyance as defined in section 1 of the Presentation of Persons (2003) Regulations, the driver of the conveyance holds an authorization under those Regulations.",
|
| 494 |
+
"citation": "Accounting for Imported Goods Regs, s. 10.2"
|
| 495 |
+
},
|
| 496 |
+
{
|
| 497 |
+
"act_code": "SOR-86-1062",
|
| 498 |
+
"act_short": "Accounting for Imported Goods Regs",
|
| 499 |
+
"act_name": "Accounting for Imported Goods and Payment of Duties Regulations",
|
| 500 |
+
"section": "10.3",
|
| 501 |
+
"marginal_note": "",
|
| 502 |
+
"part": "PART I - [Repealed, SOR/2006-152, s. 2]",
|
| 503 |
+
"division": "",
|
| 504 |
+
"heading": "Final Accounting and Payment of Duties for Commercial Goods Under Subsection 32(2) of the Act (CSA Importer)",
|
| 505 |
+
"history": "SOR/2005-383, s. 9; SOR/2024-41, s. 21",
|
| 506 |
+
"last_amended": "2024-10-21",
|
| 507 |
+
"in_force": "2006-03-22",
|
| 508 |
+
"status": "in force",
|
| 509 |
+
"current_to": "2025-05-27",
|
| 510 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-1062/section-10.3.html",
|
| 511 |
+
"id": "SOR-86-1062-s10.3",
|
| 512 |
+
"text": "10.3\n(1) Every CSA importer shall choose one of the following periods for the purposes of accounting for commercial goods that have been released under subsection 32(2) of the Act:\n(a) the period beginning on the first day of a month and ending on the last day of the month; or\n(b) the period beginning on the 18th day of a month and ending on the 17th day of the following month.\n(2) A CSA importer who chooses the period set out in paragraph (1)(a) must account for goods released in that period and pay the duties on those goods by the 10th weekday after the 17th day of the month following the month in which the goods are released.\n(3) A CSA importer who chooses the period set out in paragraph (1)(b) must account for goods released in that period and pay the duties on those goods by the 10th weekday after the end of that period.\n(4) After a CSA importer accounts for goods using a period set out in paragraph (1)(a) or (b), the CSA importer shall use the same period to account for any other commercial goods that are released under subsection 32(2) of the Act.",
|
| 513 |
+
"citation": "Accounting for Imported Goods Regs, s. 10.3"
|
| 514 |
+
},
|
| 515 |
+
{
|
| 516 |
+
"act_code": "SOR-86-1062",
|
| 517 |
+
"act_short": "Accounting for Imported Goods Regs",
|
| 518 |
+
"act_name": "Accounting for Imported Goods and Payment of Duties Regulations",
|
| 519 |
+
"section": "10.31",
|
| 520 |
+
"marginal_note": "",
|
| 521 |
+
"part": "PART I - [Repealed, SOR/2006-152, s. 2]",
|
| 522 |
+
"division": "",
|
| 523 |
+
"heading": "Final Accounting and Payment of Duties for Commercial Goods Under Subsection 32(2) of the Act (CSA Importer)",
|
| 524 |
+
"history": "SOR/2006-152, s. 8; SOR/2014-271, s. 7; SOR/2024-199, s. 1",
|
| 525 |
+
"last_amended": "2024-10-07",
|
| 526 |
+
"in_force": "2024-10-07",
|
| 527 |
+
"status": "in force",
|
| 528 |
+
"current_to": "2025-05-27",
|
| 529 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-1062/section-10.31.html",
|
| 530 |
+
"id": "SOR-86-1062-s10.31",
|
| 531 |
+
"text": "10.31 Despite section 10.3, a CSA importer may account for commercial goods that have an estimated value for duty not exceeding $3,300 by the 24th day of the month following the month in which those goods were released under subsection 32(2) of the Act.",
|
| 532 |
+
"citation": "Accounting for Imported Goods Regs, s. 10.31"
|
| 533 |
+
},
|
| 534 |
+
{
|
| 535 |
+
"act_code": "SOR-86-1062",
|
| 536 |
+
"act_short": "Accounting for Imported Goods Regs",
|
| 537 |
+
"act_name": "Accounting for Imported Goods and Payment of Duties Regulations",
|
| 538 |
+
"section": "10.4",
|
| 539 |
+
"marginal_note": "",
|
| 540 |
+
"part": "PART I - [Repealed, SOR/2006-152, s. 2]",
|
| 541 |
+
"division": "",
|
| 542 |
+
"heading": "Final Accounting and Payment of Duties for Commercial Goods Under Subsection 32(2) of the Act (CSA Importer)",
|
| 543 |
+
"history": "SOR/2005-383, s. 9; SOR/2006-152, s. 9; SOR/2024-41, s. 22",
|
| 544 |
+
"last_amended": "2024-10-21",
|
| 545 |
+
"in_force": "2006-06-23",
|
| 546 |
+
"status": "in force",
|
| 547 |
+
"current_to": "2025-05-27",
|
| 548 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-1062/section-10.4.html",
|
| 549 |
+
"id": "SOR-86-1062-s10.4",
|
| 550 |
+
"text": "10.4\n(1) [Repealed, SOR/2024-41, s. 22]\n(2) Every CSA importer shall include in the importer’s first payment of duties after receiving the CSA authorization the duties payable on commercial goods that have been released under paragraph 32(2)(a) of the Act but not accounted or paid for prior to the issue of the CSA authorization.",
|
| 551 |
+
"citation": "Accounting for Imported Goods Regs, s. 10.4"
|
| 552 |
+
},
|
| 553 |
+
{
|
| 554 |
+
"act_code": "SOR-86-1062",
|
| 555 |
+
"act_short": "Accounting for Imported Goods Regs",
|
| 556 |
+
"act_name": "Accounting for Imported Goods and Payment of Duties Regulations",
|
| 557 |
+
"section": "10.5",
|
| 558 |
+
"marginal_note": "",
|
| 559 |
+
"part": "PART I - [Repealed, SOR/2006-152, s. 2]",
|
| 560 |
+
"division": "",
|
| 561 |
+
"heading": "CSA Authorizations",
|
| 562 |
+
"history": "SOR/2005-383, s. 9; SOR/2006-152, s. 10; SOR/2011-208, s. 5(F); SOR/2013-116, s. 1; SOR/2018-121, s. 3",
|
| 563 |
+
"last_amended": "2018-06-12",
|
| 564 |
+
"in_force": "2018-06-12",
|
| 565 |
+
"status": "in force",
|
| 566 |
+
"current_to": "2025-05-27",
|
| 567 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-1062/section-10.5.html",
|
| 568 |
+
"id": "SOR-86-1062-s10.5-p1",
|
| 569 |
+
"text": "10.5\n(1) Subject to subsection (4), the Minister shall issue a customs self-assessment authorization to an importer or carrier who\n(a) applies to the Minister in the prescribed form;\n(b) in the case of an importer, submits the information described in Schedule 2 and meets the requirements of subsection (2); and\n(c) in the case of a carrier, submits the information described in Schedule 3 and meets the requirements of subsection (3).\n(2) For the purposes of paragraph (1)(b), an importer shall meet the following requirements:\n(a) if the importer is an individual, the importer ordinarily resides in Canada or the United States or, if the importer is a partnership, the importer has at least one partner who is an individual who ordinarily resides in Canada or the United States;\n(b) if the importer is a corporation, the importer has its head office in Canada or the United States or operates a branch office in Canada or the United States;\n(c) the importer has not contravened program legislation as defined in section 2 of the Canada Border Services Agency Act;\n(c.1) the importer does not have a criminal record;\n(c.2) the importer is not a debtor as defined in section 97.21 of the Act;\n(d) the importer is solvent;\n(e) the importer has imported commercial goods into Canada at least once prior to the 90 days before the day on which the application was received;\n(f) the importer gives security in accordance with section 11;\n(g) the importer’s books, records and business processes have the internal controls necessary to permit the Agency to determine if the importer is in compliance with the Act and its Regulations; and",
|
| 570 |
+
"citation": "Accounting for Imported Goods Regs, s. 10.5 (part 1 of 2)"
|
| 571 |
+
},
|
| 572 |
+
{
|
| 573 |
+
"act_code": "SOR-86-1062",
|
| 574 |
+
"act_short": "Accounting for Imported Goods Regs",
|
| 575 |
+
"act_name": "Accounting for Imported Goods and Payment of Duties Regulations",
|
| 576 |
+
"section": "10.5",
|
| 577 |
+
"marginal_note": "",
|
| 578 |
+
"part": "PART I - [Repealed, SOR/2006-152, s. 2]",
|
| 579 |
+
"division": "",
|
| 580 |
+
"heading": "CSA Authorizations",
|
| 581 |
+
"history": "SOR/2005-383, s. 9; SOR/2006-152, s. 10; SOR/2011-208, s. 5(F); SOR/2013-116, s. 1; SOR/2018-121, s. 3",
|
| 582 |
+
"last_amended": "2018-06-12",
|
| 583 |
+
"in_force": "2018-06-12",
|
| 584 |
+
"status": "in force",
|
| 585 |
+
"current_to": "2025-05-27",
|
| 586 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-1062/section-10.5.html",
|
| 587 |
+
"id": "SOR-86-1062-s10.5-p2",
|
| 588 |
+
"text": "(h) the importer is able to electronically transmit to the Agency, in accordance with the technical requirements, specifications and procedures for electronic data interchange that are set out in the Electronic Commerce Client Requirements Document, the information that is submitted when accounting for goods released under subsection 32(2) of the Act and any adjustments to that information.\n(i) [Repealed, SOR/2006-152, s. 10]\n(3) For the purposes of paragraph (1)(c), a carrier shall meet the following requirements:\n(a) if the carrier is an individual, the carrier ordinarily resides in Canada or the United States or, if the carrier is a partnership, the carrier has at least one partner who is an individual who ordinarily resides in Canada or the United States;\n(b) if the carrier is a corporation, the carrier has its head office in Canada or the United States or operates a branch office in Canada or the United States;\n(c) the carrier has not contravened program legislation as defined in section 2 of the Canada Border Services Agency Act;\n(c.1) the carrier does not have a criminal record;\n(d) the carrier is solvent;\n(e) the carrier has transported commercial goods to or from Canada at least once prior to the 90 days before the day on which the application was received;\n(f) the carrier gives security in accordance with the Transportation of Goods Regulations; and\n(g) the carrier’s books, records and business processes have the internal controls necessary to permit the Agency to determine if the carrier is in compliance with the Act and its Regulations.\n(h) [Repealed, SOR/2006-152, s. 10]\n(4) The Minister shall refuse to issue a CSA authorization if the applicant provides false or misleading information.",
|
| 589 |
+
"citation": "Accounting for Imported Goods Regs, s. 10.5 (part 2 of 2)"
|
| 590 |
+
},
|
| 591 |
+
{
|
| 592 |
+
"act_code": "SOR-86-1062",
|
| 593 |
+
"act_short": "Accounting for Imported Goods Regs",
|
| 594 |
+
"act_name": "Accounting for Imported Goods and Payment of Duties Regulations",
|
| 595 |
+
"section": "10.6",
|
| 596 |
+
"marginal_note": "",
|
| 597 |
+
"part": "PART I - [Repealed, SOR/2006-152, s. 2]",
|
| 598 |
+
"division": "",
|
| 599 |
+
"heading": "CSA Authorizations",
|
| 600 |
+
"history": "SOR/2005-383, s. 9; SOR/2006-152, s. 11; SOR/2011-208, s. 6; SOR/2018-121, s. 4",
|
| 601 |
+
"last_amended": "2018-06-12",
|
| 602 |
+
"in_force": "2018-06-12",
|
| 603 |
+
"status": "in force",
|
| 604 |
+
"current_to": "2025-05-27",
|
| 605 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-1062/section-10.6.html",
|
| 606 |
+
"id": "SOR-86-1062-s10.6-p1",
|
| 607 |
+
"text": "10.6\n(1) The Minister may suspend the CSA authorization of a CSA importer or CSA carrier if\n(a) in the case of an importer, the importer no longer meets the requirements set out in paragraph 10.5(2)(f), (g) or (h);\n(b) in the case of a carrier, the carrier no longer meets the requirements set out in paragraph 10.5(3)(f) or (g);\n(c) the importer or carrier, as the case may be, fails to maintain its security;\n(d) the importer or carrier, as the case may be, fails to advise the Minister of any change in the information referred to in paragraph 10.5(1)(b) or (c) as required by section 10.8 or 10.81, as the case may be;\n(e) the importer or carrier, as the case may be, becomes insolvent;\n(f) in the case of an importer, the importer has imported goods that were released under paragraph 32(2)(b) of the Act that were not eligible goods or that were transported by carriers that did not hold a CSA authorization;\n(g) in the case of a carrier, the carrier has transported goods into Canada that were released under paragraph 32(2)(b) of the Act that\n(i) were not eligible goods,\n(ii) were transported into Canada by a commercial highway conveyance as defined in section 1 of the Presentation of Persons (2003) Regulations operated by a driver who did not hold an authorization under those Regulations, or\n(iii) were delivered somewhere other than the place of business of the CSA importer, owner or consignee to which delivery was authorized;\n(h) in the case of a carrier, the carrier fails to comply with section 10.82; or\n(i) the importer or carrier, as the case may be, has been convicted of an offence under the Act or its regulations.\n(2) The Minister may cancel the CSA authorization of a CSA importer or CSA carrier if",
|
| 608 |
+
"citation": "Accounting for Imported Goods Regs, s. 10.6 (part 1 of 2)"
|
| 609 |
+
},
|
| 610 |
+
{
|
| 611 |
+
"act_code": "SOR-86-1062",
|
| 612 |
+
"act_short": "Accounting for Imported Goods Regs",
|
| 613 |
+
"act_name": "Accounting for Imported Goods and Payment of Duties Regulations",
|
| 614 |
+
"section": "10.6",
|
| 615 |
+
"marginal_note": "",
|
| 616 |
+
"part": "PART I - [Repealed, SOR/2006-152, s. 2]",
|
| 617 |
+
"division": "",
|
| 618 |
+
"heading": "CSA Authorizations",
|
| 619 |
+
"history": "SOR/2005-383, s. 9; SOR/2006-152, s. 11; SOR/2011-208, s. 6; SOR/2018-121, s. 4",
|
| 620 |
+
"last_amended": "2018-06-12",
|
| 621 |
+
"in_force": "2018-06-12",
|
| 622 |
+
"status": "in force",
|
| 623 |
+
"current_to": "2025-05-27",
|
| 624 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-1062/section-10.6.html",
|
| 625 |
+
"id": "SOR-86-1062-s10.6-p2",
|
| 626 |
+
"text": "(a) the authorization has been obtained on the basis of false or misleading information;\n(b) in the case of an importer, the importer no longer meets the requirements set out in one or more of paragraphs 10.5(2)(a) to (c.2);\n(c) in the case of a carrier, the carrier no longer meets the requirements set out in one or more of paragraphs 10.5(3)(a) to (c.1);\n(d) the importer or carrier, as the case may be, so requests; or\n(e) in the case of a CSA authorization that has been suspended, the importer or carrier, as the case may be, has not corrected the matter that gave rise to the suspension within 30 days after the suspension has taken effect or, if a longer period has been allowed under subsection (3), within that period.\n(2.1) In deciding whether to suspend or cancel the CSA authorization of a CSA importer or CSA carrier, the Minister is to consider\n(a) the severity of the breach and whether or not it was rectified soon after it was discovered;\n(b) the economic impact of the suspension or the cancellation; and\n(c) the security and safety of Canadians.\n(3) If it is not possible for an importer or carrier to correct the matter that gave rise to the suspension within 30 days after the suspension has taken effect, the Minister, on an application made within those 30 days, shall allow a longer period to correct the matter.",
|
| 627 |
+
"citation": "Accounting for Imported Goods Regs, s. 10.6 (part 2 of 2)"
|
| 628 |
+
},
|
| 629 |
+
{
|
| 630 |
+
"act_code": "SOR-86-1062",
|
| 631 |
+
"act_short": "Accounting for Imported Goods Regs",
|
| 632 |
+
"act_name": "Accounting for Imported Goods and Payment of Duties Regulations",
|
| 633 |
+
"section": "10.7",
|
| 634 |
+
"marginal_note": "",
|
| 635 |
+
"part": "PART I - [Repealed, SOR/2006-152, s. 2]",
|
| 636 |
+
"division": "",
|
| 637 |
+
"heading": "CSA Authorizations",
|
| 638 |
+
"history": "SOR/2005-383, s. 9; SOR/2011-208, s. 7",
|
| 639 |
+
"last_amended": "2011-09-30",
|
| 640 |
+
"in_force": "2011-09-30",
|
| 641 |
+
"status": "in force",
|
| 642 |
+
"current_to": "2025-05-27",
|
| 643 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-1062/section-10.7.html",
|
| 644 |
+
"id": "SOR-86-1062-s10.7",
|
| 645 |
+
"text": "10.7\n(1) If the Minister decides to refuse to issue a CSA authorization or to suspend or cancel a CSA authorization, the Minister shall\n(a) give a written notice to the applicant or the CSA importer or CSA carrier, as the case may be, that sets out the reasons for the decision; and\n(b) give an opportunity to the applicant or the CSA importer or CSA carrier, as the case may be, to make written submissions concerning the decision.\n(2) The suspension or cancellation of a CSA authorization is not effective until the earlier of\n(a) the day on which the notice referred to in paragraph (1)(a) is received, and\n(b) the 15th day after the day on which that notice is sent by mail or courier.",
|
| 646 |
+
"citation": "Accounting for Imported Goods Regs, s. 10.7"
|
| 647 |
+
},
|
| 648 |
+
{
|
| 649 |
+
"act_code": "SOR-86-1062",
|
| 650 |
+
"act_short": "Accounting for Imported Goods Regs",
|
| 651 |
+
"act_name": "Accounting for Imported Goods and Payment of Duties Regulations",
|
| 652 |
+
"section": "10.71",
|
| 653 |
+
"marginal_note": "",
|
| 654 |
+
"part": "PART I - [Repealed, SOR/2006-152, s. 2]",
|
| 655 |
+
"division": "",
|
| 656 |
+
"heading": "CSA Authorizations",
|
| 657 |
+
"history": "SOR/2006-152, s. 12",
|
| 658 |
+
"last_amended": "2006-06-23",
|
| 659 |
+
"in_force": "2006-06-23",
|
| 660 |
+
"status": "in force",
|
| 661 |
+
"current_to": "2025-05-27",
|
| 662 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-1062/section-10.71.html",
|
| 663 |
+
"id": "SOR-86-1062-s10.71",
|
| 664 |
+
"text": "10.71 The Minister shall, on application, reinstate a suspended CSA authorization if the matter giving rise to the suspension has been corrected.",
|
| 665 |
+
"citation": "Accounting for Imported Goods Regs, s. 10.71"
|
| 666 |
+
},
|
| 667 |
+
{
|
| 668 |
+
"act_code": "SOR-86-1062",
|
| 669 |
+
"act_short": "Accounting for Imported Goods Regs",
|
| 670 |
+
"act_name": "Accounting for Imported Goods and Payment of Duties Regulations",
|
| 671 |
+
"section": "10.8",
|
| 672 |
+
"marginal_note": "",
|
| 673 |
+
"part": "PART I - [Repealed, SOR/2006-152, s. 2]",
|
| 674 |
+
"division": "",
|
| 675 |
+
"heading": "CSA Authorizations",
|
| 676 |
+
"history": "SOR/2005-383, s. 9; SOR/2006-152, s. 12; SOR/2011-208, s. 8; SOR/2024-41, s. 23",
|
| 677 |
+
"last_amended": "2024-10-21",
|
| 678 |
+
"in_force": "2011-09-30",
|
| 679 |
+
"status": "in force",
|
| 680 |
+
"current_to": "2025-05-27",
|
| 681 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-1062/section-10.8.html",
|
| 682 |
+
"id": "SOR-86-1062-s10.8",
|
| 683 |
+
"text": "10.8\n(1) Every CSA importer must, in respect of changes to the information provided in accordance with paragraph 10.5(1)(b), notify the Minister in writing at least 30 days before they occur.\n(2) Despite subsection (1), every CSA importer shall immediately notify the Minister of any of the following changes:\n(a) Despite subsection (1), every CSA importer must immediately notify the Minister in writing of any of the following changes:\n(b) changes to the ownership or organizational structure of the importer;\n(c) the sale of all or part of the importer’s business; and\n(d) the importer is no longer able to electronically transmit to the Agency the information that is submitted when accounting for goods released under subsection 32(2) of the Act and any adjustments to that information.",
|
| 684 |
+
"citation": "Accounting for Imported Goods Regs, s. 10.8"
|
| 685 |
+
},
|
| 686 |
+
{
|
| 687 |
+
"act_code": "SOR-86-1062",
|
| 688 |
+
"act_short": "Accounting for Imported Goods Regs",
|
| 689 |
+
"act_name": "Accounting for Imported Goods and Payment of Duties Regulations",
|
| 690 |
+
"section": "10.81",
|
| 691 |
+
"marginal_note": "",
|
| 692 |
+
"part": "PART I - [Repealed, SOR/2006-152, s. 2]",
|
| 693 |
+
"division": "",
|
| 694 |
+
"heading": "CSA Authorizations",
|
| 695 |
+
"history": "SOR/2006-152, s. 12; SOR/2011-208, s. 9",
|
| 696 |
+
"last_amended": "2011-09-30",
|
| 697 |
+
"in_force": "2011-09-30",
|
| 698 |
+
"status": "in force",
|
| 699 |
+
"current_to": "2025-05-27",
|
| 700 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-1062/section-10.81.html",
|
| 701 |
+
"id": "SOR-86-1062-s10.81",
|
| 702 |
+
"text": "10.81\n(1) Every CSA carrier shall, in respect of changes to the information provided under paragraph 10.5(1)(c), notify the Minister at least 30 days before they occur.\n(2) Despite subsection (1), every CSA carrier shall immediately notify the Minister of any of the following changes:\n(a) changes to the carrier’s name or corporate name, as the case may be, residence or business address, as the case may be, solvency or security referred to in paragraph 10.5(3)(f);\n(b) changes to the ownership or organizational structure of the carrier; and\n(c) the sale of all or part of the carrier’s business.",
|
| 703 |
+
"citation": "Accounting for Imported Goods Regs, s. 10.81"
|
| 704 |
+
},
|
| 705 |
+
{
|
| 706 |
+
"act_code": "SOR-86-1062",
|
| 707 |
+
"act_short": "Accounting for Imported Goods Regs",
|
| 708 |
+
"act_name": "Accounting for Imported Goods and Payment of Duties Regulations",
|
| 709 |
+
"section": "10.82",
|
| 710 |
+
"marginal_note": "",
|
| 711 |
+
"part": "PART I - [Repealed, SOR/2006-152, s. 2]",
|
| 712 |
+
"division": "",
|
| 713 |
+
"heading": "CSA Authorizations",
|
| 714 |
+
"history": "SOR/2006-152, s. 12",
|
| 715 |
+
"last_amended": "2006-06-23",
|
| 716 |
+
"in_force": "2006-06-23",
|
| 717 |
+
"status": "in force",
|
| 718 |
+
"current_to": "2025-05-27",
|
| 719 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-1062/section-10.82.html",
|
| 720 |
+
"id": "SOR-86-1062-s10.82",
|
| 721 |
+
"text": "10.82 Every CSA carrier shall, as soon as the circumstances permit, provide the Minister with a description of any commercial goods that\n(a) the carrier transported into Canada;\n(b) were not released but were authorized for delivery to a place under subsection 19(1) or paragraph 32(2)(b) of the Act; and\n(c) were not delivered to that place within 40 days after the authorization was given.",
|
| 722 |
+
"citation": "Accounting for Imported Goods Regs, s. 10.82"
|
| 723 |
+
},
|
| 724 |
+
{
|
| 725 |
+
"act_code": "SOR-86-1062",
|
| 726 |
+
"act_short": "Accounting for Imported Goods Regs",
|
| 727 |
+
"act_name": "Accounting for Imported Goods and Payment of Duties Regulations",
|
| 728 |
+
"section": "10.9",
|
| 729 |
+
"marginal_note": "",
|
| 730 |
+
"part": "PART I - [Repealed, SOR/2006-152, s. 2]",
|
| 731 |
+
"division": "",
|
| 732 |
+
"heading": "CSA Authorizations",
|
| 733 |
+
"history": "",
|
| 734 |
+
"last_amended": "2024-10-21",
|
| 735 |
+
"in_force": "2024-10-21",
|
| 736 |
+
"status": "repealed",
|
| 737 |
+
"current_to": "2025-05-27",
|
| 738 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-1062/section-10.9.html",
|
| 739 |
+
"id": "SOR-86-1062-s10.9",
|
| 740 |
+
"text": "10.9 [Repealed, SOR/2024-41, s. 24]",
|
| 741 |
+
"citation": "Accounting for Imported Goods Regs, s. 10.9"
|
| 742 |
+
},
|
| 743 |
+
{
|
| 744 |
+
"act_code": "SOR-86-1062",
|
| 745 |
+
"act_short": "Accounting for Imported Goods Regs",
|
| 746 |
+
"act_name": "Accounting for Imported Goods and Payment of Duties Regulations",
|
| 747 |
+
"section": "11",
|
| 748 |
+
"marginal_note": "",
|
| 749 |
+
"part": "PART I - [Repealed, SOR/2006-152, s. 2]",
|
| 750 |
+
"division": "",
|
| 751 |
+
"heading": "Security for Release of Goods",
|
| 752 |
+
"history": "SOR/91-274, part II; SOR/92-128, s. 1; SOR/92-410, s. 5; SOR/93-555, s. 3; SOR/95-419, s. 5; SOR/97-129, s. 1; SOR/2001-197, s. 3; SOR/2005-202, s. 1; SOR/2005-210, s. 4; SOR/2005-383, s. 10; SOR/2006-152, s. 14; SOR/2024-41, s. 25",
|
| 753 |
+
"last_amended": "2024-10-21",
|
| 754 |
+
"in_force": "2024-10-21",
|
| 755 |
+
"status": "in force",
|
| 756 |
+
"current_to": "2025-05-27",
|
| 757 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-1062/section-11.html",
|
| 758 |
+
"id": "SOR-86-1062-s11",
|
| 759 |
+
"text": "11 The security required under paragraphs 7.2(b), 7.3(b), 9(a) and 10.5(2)(f) must be given in accordance with the requirements of the Financial Security (Electronic Means) Regulations and in an amount determined by the Minister.",
|
| 760 |
+
"citation": "Accounting for Imported Goods Regs, s. 11"
|
| 761 |
+
},
|
| 762 |
+
{
|
| 763 |
+
"act_code": "SOR-86-1062",
|
| 764 |
+
"act_short": "Accounting for Imported Goods Regs",
|
| 765 |
+
"act_name": "Accounting for Imported Goods and Payment of Duties Regulations",
|
| 766 |
+
"section": "12",
|
| 767 |
+
"marginal_note": "",
|
| 768 |
+
"part": "PART I - [Repealed, SOR/2006-152, s. 2]",
|
| 769 |
+
"division": "",
|
| 770 |
+
"heading": "Release of and Interim Accounting for Commercial Goods where Information is Deficient",
|
| 771 |
+
"history": "SOR/88-515, ss. 8(F), 12(F); SOR/96-150, s. 10; SOR/2005-383, s. 13; SOR/2024-41, s. 26",
|
| 772 |
+
"last_amended": "2024-10-21",
|
| 773 |
+
"in_force": "2006-03-22",
|
| 774 |
+
"status": "in force",
|
| 775 |
+
"current_to": "2025-05-27",
|
| 776 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-1062/section-12.html",
|
| 777 |
+
"id": "SOR-86-1062-s12",
|
| 778 |
+
"text": "12\n(1) Subject to subsection (2), where the importer or owner of commercial goods cannot account for the goods in the manner described in paragraph 32(1)(a) of the Act for the reason only that the prescribed information is not available to that importer or owner, the goods may be released under subsection 32(2)(a) of the Act prior to the accounting required under subsection 32(1) of the Act and may, pursuant to section 33 of the Act, be so released prior to the payment of the duties thereon on condition that the importer or owner of the goods\n(a) makes the interim accounting required under subsection 32(2)(a) of the Act and provides, at the time of the interim accounting, information and evidence sufficient to enable an officer to determine provisionally the tariff classification and estimate the value for duty of the goods; and\n(b) gives security in accordance with the requirements of the Financial Security (Electronic Means) Regulations and in an amount determined by the Minister.\n(2) The conditions set out in paragraphs (1)(a) and (b) do not apply where\n(a) in the case of used goods or goods unconditionally free of duties, a determination of the tariff classification and an appraisal of the value for duty of the goods is made by an officer pursuant to subsection 58(1) of the Act; or\n(b) an interim accounting in respect of the goods is made pursuant to section 14.",
|
| 779 |
+
"citation": "Accounting for Imported Goods Regs, s. 12"
|
| 780 |
+
},
|
| 781 |
+
{
|
| 782 |
+
"act_code": "SOR-86-1062",
|
| 783 |
+
"act_short": "Accounting for Imported Goods Regs",
|
| 784 |
+
"act_name": "Accounting for Imported Goods and Payment of Duties Regulations",
|
| 785 |
+
"section": "13",
|
| 786 |
+
"marginal_note": "",
|
| 787 |
+
"part": "PART I - [Repealed, SOR/2006-152, s. 2]",
|
| 788 |
+
"division": "",
|
| 789 |
+
"heading": "Release of and Interim Accounting for Commercial Goods where Information is Deficient",
|
| 790 |
+
"history": "SOR/2005-383, s. 13; SOR/2006-152, s. 15(F); SOR/2024-41, s. 27",
|
| 791 |
+
"last_amended": "2024-10-21",
|
| 792 |
+
"in_force": "2024-10-21",
|
| 793 |
+
"status": "in force",
|
| 794 |
+
"current_to": "2025-05-27",
|
| 795 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-1062/section-13.html",
|
| 796 |
+
"id": "SOR-86-1062-s13",
|
| 797 |
+
"text": "13 If commercial goods are released under paragraph 32(2)(a) of the Act in accordance with section 12, the person who made the interim accounting must account for the goods in the manner described in paragraph 32(1)(a) of the Act and pay any duties on the goods by the 10th weekday after the 17th day of the month following the month that includes the earlier of\n(a) the day on which the goods are accounted for; and\n(b) the last day on which the goods are required to be accounted for.",
|
| 798 |
+
"citation": "Accounting for Imported Goods Regs, s. 13"
|
| 799 |
+
},
|
| 800 |
+
{
|
| 801 |
+
"act_code": "SOR-86-1062",
|
| 802 |
+
"act_short": "Accounting for Imported Goods Regs",
|
| 803 |
+
"act_name": "Accounting for Imported Goods and Payment of Duties Regulations",
|
| 804 |
+
"section": "14",
|
| 805 |
+
"marginal_note": "",
|
| 806 |
+
"part": "PART I - [Repealed, SOR/2006-152, s. 2]",
|
| 807 |
+
"division": "",
|
| 808 |
+
"heading": "Release of Plans, Drawings, Blueprints, Machinery and Equipment",
|
| 809 |
+
"history": "SOR/88-515, ss. 9(F), 11; SOR/96-150, s. 11; SOR/2005-210, s. 4; SOR/2005-383, s. 13; SOR/2006-152, ss. 17, 22; SOR/2024-41, s. 28",
|
| 810 |
+
"last_amended": "2024-10-21",
|
| 811 |
+
"in_force": "2006-06-23",
|
| 812 |
+
"status": "in force",
|
| 813 |
+
"current_to": "2025-05-27",
|
| 814 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-1062/section-14.html",
|
| 815 |
+
"id": "SOR-86-1062-s14",
|
| 816 |
+
"text": "14\n(1) Subject to subsection (2), the following goods may be released under subsection 32(2) of the Act prior to the accounting required under paragraph 32(1)(a) of the Act and may be released under subsection 33(1) of the Act prior to the payment of duties required under paragraph 32(1)(b) of the Act:\n(a) plans, drawings and blueprints imported for use in a construction project in Canada;\n(b) machinery and equipment imported for use in a thing being installed in Canada, where the value for duty thereof cannot readily be appraised;\n(c) military equipment imported by the Department of National Defence; and\n(d) material, components and parts imported by the Department of National Defence for use in the repair, maintenance, modification and testing of the equipment referred to in paragraph (c).\n(2) No goods referred to in subsection (1) may be released under subsection 32(2) or 33(1) of the Act unless the importer or owner of the goods\n(a) in the case of goods to be released under paragraph 32(2)(b) of the Act, provides, before the goods are authorized for delivery, information and evidence sufficient to enable an officer to determine the tariff classification and estimate the value for duty of the goods;\n(a.1) in any other case, makes the interim accounting required under paragraph 32(2)(a) of the Act and provides, at the time of the interim accounting, information and evidence sufficient to enable an officer to determine the tariff classification and estimate the value for duty of the goods;\n(b) gives security in accordance with the requirements of the Financial Security (Electronic Means) Regulations and in an amount determined by the Minister; and\n(c) undertakes to notify the Minister as soon as feasible in writing of\n(i) the termination date of the construction project, in the case of goods referred to in paragraph (1)(a),\n(ii) the termination date of the installation of the thing, in the case of goods referred to in paragraph (1)(b), or\n(iii) the date the last shipment is received, in the case of goods referred to in paragraph (1)(c) or (d) that are part of a series of shipments.",
|
| 817 |
+
"citation": "Accounting for Imported Goods Regs, s. 14"
|
| 818 |
+
},
|
| 819 |
+
{
|
| 820 |
+
"act_code": "SOR-86-1062",
|
| 821 |
+
"act_short": "Accounting for Imported Goods Regs",
|
| 822 |
+
"act_name": "Accounting for Imported Goods and Payment of Duties Regulations",
|
| 823 |
+
"section": "15",
|
| 824 |
+
"marginal_note": "",
|
| 825 |
+
"part": "PART I - [Repealed, SOR/2006-152, s. 2]",
|
| 826 |
+
"division": "",
|
| 827 |
+
"heading": "Release of Plans, Drawings, Blueprints, Machinery and Equipment",
|
| 828 |
+
"history": "SOR/88-515, s. 10; SOR/2005-383, s. 13; SOR/2006-152, s. 18; SOR/2024-41, s. 29",
|
| 829 |
+
"last_amended": "2024-10-21",
|
| 830 |
+
"in_force": "2024-10-21",
|
| 831 |
+
"status": "in force",
|
| 832 |
+
"current_to": "2025-05-27",
|
| 833 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-1062/section-15.html",
|
| 834 |
+
"id": "SOR-86-1062-s15",
|
| 835 |
+
"text": "15 If goods referred to in subsection 14(1) are released under subsection 32(2) of the Act, the goods must be accounted for under subsection 32(3) of the Act within 12 months after the applicable date referred to in subparagraph 14(2)(c)(i), (ii) or (iii), and the duties on those goods must be paid, in the case of goods imported by a CSA importer, no later than the 10th weekday after the 17th day of the month following the month in which goods are accounted for and, in all other cases, at the time of accounting.",
|
| 836 |
+
"citation": "Accounting for Imported Goods Regs, s. 15"
|
| 837 |
+
},
|
| 838 |
+
{
|
| 839 |
+
"act_code": "SOR-86-1062",
|
| 840 |
+
"act_short": "Accounting for Imported Goods Regs",
|
| 841 |
+
"act_name": "Accounting for Imported Goods and Payment of Duties Regulations",
|
| 842 |
+
"section": "16",
|
| 843 |
+
"marginal_note": "",
|
| 844 |
+
"part": "PART I - [Repealed, SOR/2006-152, s. 2]",
|
| 845 |
+
"division": "",
|
| 846 |
+
"heading": "Release of Plans, Drawings, Blueprints, Machinery and Equipment",
|
| 847 |
+
"history": "",
|
| 848 |
+
"last_amended": "2025-05-20",
|
| 849 |
+
"in_force": "2025-05-20",
|
| 850 |
+
"status": "repealed",
|
| 851 |
+
"current_to": "2025-05-27",
|
| 852 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-1062/section-16.html",
|
| 853 |
+
"id": "SOR-86-1062-s16",
|
| 854 |
+
"text": "16 [Repealed, SOR/2024-41, s. 30]",
|
| 855 |
+
"citation": "Accounting for Imported Goods Regs, s. 16"
|
| 856 |
+
},
|
| 857 |
+
{
|
| 858 |
+
"act_code": "SOR-86-1062",
|
| 859 |
+
"act_short": "Accounting for Imported Goods Regs",
|
| 860 |
+
"act_name": "Accounting for Imported Goods and Payment of Duties Regulations",
|
| 861 |
+
"section": "17",
|
| 862 |
+
"marginal_note": "",
|
| 863 |
+
"part": "PART II - [repealed, Sor/2006-152, s. 19]",
|
| 864 |
+
"division": "",
|
| 865 |
+
"heading": "PART II - [repealed, Sor/2006-152, s. 19]",
|
| 866 |
+
"history": "",
|
| 867 |
+
"last_amended": "2006-06-23",
|
| 868 |
+
"in_force": "2006-06-23",
|
| 869 |
+
"status": "repealed",
|
| 870 |
+
"current_to": "2025-05-27",
|
| 871 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-1062/section-17.html",
|
| 872 |
+
"id": "SOR-86-1062-s17",
|
| 873 |
+
"text": "17 [Repealed, SOR/2006-152, s. 19]",
|
| 874 |
+
"citation": "Accounting for Imported Goods Regs, s. 17"
|
| 875 |
+
}
|
| 876 |
+
]
|
|
@@ -0,0 +1,1484 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"act_code": "SOR-86-873",
|
| 4 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 5 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 6 |
+
"section": "1",
|
| 7 |
+
"marginal_note": "",
|
| 8 |
+
"part": "",
|
| 9 |
+
"division": "",
|
| 10 |
+
"heading": "Short Title",
|
| 11 |
+
"history": "",
|
| 12 |
+
"last_amended": "2006-03-22",
|
| 13 |
+
"in_force": "2006-03-22",
|
| 14 |
+
"status": "in force",
|
| 15 |
+
"current_to": "2019-06-21",
|
| 16 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-1.html",
|
| 17 |
+
"id": "SOR-86-873-s1",
|
| 18 |
+
"text": "1 These Regulations may be cited as the Reporting of Imported Goods Regulations.",
|
| 19 |
+
"citation": "Reporting of Imported Goods Regs, s. 1"
|
| 20 |
+
},
|
| 21 |
+
{
|
| 22 |
+
"act_code": "SOR-86-873",
|
| 23 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 24 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 25 |
+
"section": "2",
|
| 26 |
+
"marginal_note": "",
|
| 27 |
+
"part": "",
|
| 28 |
+
"division": "",
|
| 29 |
+
"heading": "Interpretation",
|
| 30 |
+
"history": "SOR/88-77, s. 1; SOR/96-156, s. 1; SOR/98-53, s. 2; SOR/2005-175, s. 1; SOR/2005-303, s. 1; SOR/2005-387, s. 1; SOR/2006-148, s. 1; SOR/2006-155, ss. 1, 6; SOR/2008-25, s. 1; SOR/2015-90, s. 1",
|
| 31 |
+
"last_amended": "2015-05-06",
|
| 32 |
+
"in_force": "2015-05-06",
|
| 33 |
+
"status": "in force",
|
| 34 |
+
"current_to": "2019-06-21",
|
| 35 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-2.html",
|
| 36 |
+
"id": "SOR-86-873-s2-p1",
|
| 37 |
+
"text": "2 In these Regulations,\nAct means the Customs Act; (Loi)\nACI Marine Client Document[Repealed, SOR/2006-148, s. 1]\nairport of arrival means the customs office in Canada at which a carrier that operates an aircraft expects a report to be made under section 12 of the Act with respect to goods imported on board that aircraft; (aéroport d’arrivée)\nbreak-bulk goods means specified goods other than\n(a) goods within cargo containers,\n(b) bulk goods, or\n(c) empty cargo containers; (marchandises diverses)\nbulk goods means, in respect of goods transported by a vessel, goods that are loose or in mass, such that they are confined only by the permanent structures of the vessel, without intermediate containment or intermediate packaging; (marchandises en vrac)\ncargo container means a container that\n(a) is fully or partially enclosed to constitute a receptacle intended for containing goods,\n(b) is of a permanent character and is suitable for repeated use,\n(c) is designed to carry goods, by one or more modes of transport, without intermediate reloading, and\n(d) has an internal volume of one or more cubic metres,\nand includes the ancillary equipment of the container — provided that the ancillary equipment is carried with the container — and demountable bodies; (conteneur)\nCBSA[Repealed, SOR/2006-155, s. 1]\nchief officer of customs, with respect to an area or place, means the manager of the customs office or customs offices that serve that area or place; (agent en chef des douanes)\ncommercial driver has the same meaning as in section 1 of the Presentation of Persons (2003) Regulations; (routier)\ncommercial goods means goods that are or will be imported for sale or for any commercial, industrial, occupational, institutional or other similar use; (marchandises commerciales)",
|
| 38 |
+
"citation": "Reporting of Imported Goods Regs, s. 2 (part 1 of 5)"
|
| 39 |
+
},
|
| 40 |
+
{
|
| 41 |
+
"act_code": "SOR-86-873",
|
| 42 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 43 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 44 |
+
"section": "2",
|
| 45 |
+
"marginal_note": "",
|
| 46 |
+
"part": "",
|
| 47 |
+
"division": "",
|
| 48 |
+
"heading": "Interpretation",
|
| 49 |
+
"history": "SOR/88-77, s. 1; SOR/96-156, s. 1; SOR/98-53, s. 2; SOR/2005-175, s. 1; SOR/2005-303, s. 1; SOR/2005-387, s. 1; SOR/2006-148, s. 1; SOR/2006-155, ss. 1, 6; SOR/2008-25, s. 1; SOR/2015-90, s. 1",
|
| 50 |
+
"last_amended": "2015-05-06",
|
| 51 |
+
"in_force": "2015-05-06",
|
| 52 |
+
"status": "in force",
|
| 53 |
+
"current_to": "2019-06-21",
|
| 54 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-2.html",
|
| 55 |
+
"id": "SOR-86-873-s2-p2",
|
| 56 |
+
"text": "commercial passenger conveyance has the same meaning as in section 1 of the Presentation of Persons (2003) Regulations; (moyen de transport commercial de passagers)\ncorporate aircraft has the same meaning as in section 1 of the Presentation of Persons (2003) Regulations; (aéronef d’affaires)\ncourier has the same meaning as in section 2 of the Persons Authorized to Account for Casual Goods Regulations; (messager)\nCSA carrier has the same meaning as in section 2 of the Accounting for Imported Goods and Payment of Duties Regulations; (transporteur PAD)\nCSA importer has the same meaning as in section 2 of the Accounting for Imported Goods and Payment of Duties Regulations; (importateur PAD)\ndesignated customs office means a place designated under section 5 of the Act as a customs office where goods may be reported under section 12 of the Act; (bureau de douane établi)\ndesignated holding area means a room or other area designated by the President for the use of persons arriving in Canada who are in transit to another place in Canada or to a place outside Canada; (zone d’attente désignée)\nElectronic Commerce Client Requirements Document means the Electronic Commerce Client Requirements Document established by the Agency, as amended from time to time; (Document sur les exigences à l’égard des clients du commerce électronique)\neligible goods has the same meaning as in section 2 of the Accounting for Imported Goods and Payment of Duties Regulations; (marchandises admissibles)\nemergency conveyance means a conveyance that is clearly marked for use for emergency purposes, such as a vehicle that is clearly marked as a fire-fighting or police vehicle or as an ambulance; (moyen de transport de secours)",
|
| 57 |
+
"citation": "Reporting of Imported Goods Regs, s. 2 (part 2 of 5)"
|
| 58 |
+
},
|
| 59 |
+
{
|
| 60 |
+
"act_code": "SOR-86-873",
|
| 61 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 62 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 63 |
+
"section": "2",
|
| 64 |
+
"marginal_note": "",
|
| 65 |
+
"part": "",
|
| 66 |
+
"division": "",
|
| 67 |
+
"heading": "Interpretation",
|
| 68 |
+
"history": "SOR/88-77, s. 1; SOR/96-156, s. 1; SOR/98-53, s. 2; SOR/2005-175, s. 1; SOR/2005-303, s. 1; SOR/2005-387, s. 1; SOR/2006-148, s. 1; SOR/2006-155, ss. 1, 6; SOR/2008-25, s. 1; SOR/2015-90, s. 1",
|
| 69 |
+
"last_amended": "2015-05-06",
|
| 70 |
+
"in_force": "2015-05-06",
|
| 71 |
+
"status": "in force",
|
| 72 |
+
"current_to": "2019-06-21",
|
| 73 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-2.html",
|
| 74 |
+
"id": "SOR-86-873-s2-p3",
|
| 75 |
+
"text": "fishing vessel has the same meaning as in section 2 of the Fisheries Act; (bateau de pêche)\nfreight forwarder means a person who, on behalf of one or more owners, importers, shippers or consignees of goods, causes specified goods to be transported by one or more carriers; (agent d’expédition)\ninternational commercial transportation means\n(a) any transportation resulting in, or intended to result in, the carriage of persons or goods for hire or reward, or\n(b) any transportation of persons or goods by or on behalf of an enterprise engaged in an activity of financial return,\nwhere the persons or goods are conveyed\n(c) from a place outside Canada to a place inside Canada,\n(d) from a place inside Canada to a place outside Canada, or\n(e) from a place outside Canada in transit through Canada to a place outside Canada; (transport commercial international)\nList of Tariff Provisions means the List of Tariff Provisions set out in the schedule to the Customs Tariff; (liste des dispositions tarifaires)\nmarine pleasure craft has the same meaning as in section 1 of the Presentation of Persons (2003) Regulations; (embarcation de plaisance)\nNAV CANADA means the corporation that was incorporated as NAV CANADA on May 26, 1995 under Part II of the Canada Corporations Act; (NAV CANADA)\nparticipants’ requirements document[Repealed, SOR/2006-155, s. 1]\nport of arrival means the customs office in Canada at which a carrier that operates a vessel expects a report to be made under section 12 of the Act with respect to goods imported on board that vessel; (port d’arrivée)\nprivate aircraft has the same meaning as in section 1 of the Presentation of Persons (2003) Regulations; (aéronef privé)",
|
| 76 |
+
"citation": "Reporting of Imported Goods Regs, s. 2 (part 3 of 5)"
|
| 77 |
+
},
|
| 78 |
+
{
|
| 79 |
+
"act_code": "SOR-86-873",
|
| 80 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 81 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 82 |
+
"section": "2",
|
| 83 |
+
"marginal_note": "",
|
| 84 |
+
"part": "",
|
| 85 |
+
"division": "",
|
| 86 |
+
"heading": "Interpretation",
|
| 87 |
+
"history": "SOR/88-77, s. 1; SOR/96-156, s. 1; SOR/98-53, s. 2; SOR/2005-175, s. 1; SOR/2005-303, s. 1; SOR/2005-387, s. 1; SOR/2006-148, s. 1; SOR/2006-155, ss. 1, 6; SOR/2008-25, s. 1; SOR/2015-90, s. 1",
|
| 88 |
+
"last_amended": "2015-05-06",
|
| 89 |
+
"in_force": "2015-05-06",
|
| 90 |
+
"status": "in force",
|
| 91 |
+
"current_to": "2019-06-21",
|
| 92 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-2.html",
|
| 93 |
+
"id": "SOR-86-873-s2-p4",
|
| 94 |
+
"text": "specified goods means commercial goods, goods that are or will be imported to Canada for a fee or empty cargo containers that are not for sale but does not include\n(a) goods that will be released after they have been accounted for and all duties with respect to them have been paid under subsection 32(1) of the Act if\n(i) the goods are or will be in the actual possession of a person arriving in Canada, or\n(ii) the goods form or will form part of a person’s baggage and the person and the baggage arrive or will arrive in Canada on board the same conveyance,\n(b) mail,\n(c) commercial goods that are used in a repair that is made outside Canada to a conveyance that was built in Canada or in respect of which duties have been paid, if the repair is made as a result of an unforeseen contingency that occurs outside Canada and is necessary to enable the conveyance to return safely to Canada,\n(d) a military conveyance as defined in subsection 18(1) of the Canadian Transportation Accident Investigation and Safety Board Act or goods that are transported on board that conveyance,\n(e) an emergency conveyance or goods that are transported on board that conveyance, or\n(f) a conveyance that returns to Canada immediately after being denied entry to the United States or goods that are transported on board that conveyance; (marchandises spécifiées)\ntime of departure, in respect of an aircraft, means the eastern standard time or, if it is in effect, the eastern daylight savings time at which the aircraft leaves the gate or dock of the airport of departure and, if the aircraft is not departing from a gate or dock, the time at which the blocks are removed from the wheels of the aircraft before its departure. (heure du départ)\nvessel means",
|
| 95 |
+
"citation": "Reporting of Imported Goods Regs, s. 2 (part 4 of 5)"
|
| 96 |
+
},
|
| 97 |
+
{
|
| 98 |
+
"act_code": "SOR-86-873",
|
| 99 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 100 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 101 |
+
"section": "2",
|
| 102 |
+
"marginal_note": "",
|
| 103 |
+
"part": "",
|
| 104 |
+
"division": "",
|
| 105 |
+
"heading": "Interpretation",
|
| 106 |
+
"history": "SOR/88-77, s. 1; SOR/96-156, s. 1; SOR/98-53, s. 2; SOR/2005-175, s. 1; SOR/2005-303, s. 1; SOR/2005-387, s. 1; SOR/2006-148, s. 1; SOR/2006-155, ss. 1, 6; SOR/2008-25, s. 1; SOR/2015-90, s. 1",
|
| 107 |
+
"last_amended": "2015-05-06",
|
| 108 |
+
"in_force": "2015-05-06",
|
| 109 |
+
"status": "in force",
|
| 110 |
+
"current_to": "2019-06-21",
|
| 111 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-2.html",
|
| 112 |
+
"id": "SOR-86-873-s2-p5",
|
| 113 |
+
"text": "(a) any ship, vessel, dredge, scow, yacht, boat or other water-borne craft, and\n(b) any floating submersible or semi-submersible structure such as a dock, caisson, pontoon, coffer-dam, production platform, drilling ship, drilling barge, drilling rig, jack-up drilling ship, jack-up drilling platform or other drilling platform. (bateau)\n(c) [Repealed, SOR/2008-25, s. 1]",
|
| 114 |
+
"citation": "Reporting of Imported Goods Regs, s. 2 (part 5 of 5)"
|
| 115 |
+
},
|
| 116 |
+
{
|
| 117 |
+
"act_code": "SOR-86-873",
|
| 118 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 119 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 120 |
+
"section": "2.1",
|
| 121 |
+
"marginal_note": "",
|
| 122 |
+
"part": "",
|
| 123 |
+
"division": "",
|
| 124 |
+
"heading": "Interpretation",
|
| 125 |
+
"history": "SOR/2005-175, s. 2; SOR/2015-90, s. 2",
|
| 126 |
+
"last_amended": "2015-05-06",
|
| 127 |
+
"in_force": "2015-05-06",
|
| 128 |
+
"status": "in force",
|
| 129 |
+
"current_to": "2019-06-21",
|
| 130 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-2.1.html",
|
| 131 |
+
"id": "SOR-86-873-s2.1",
|
| 132 |
+
"text": "2.1 In these Regulations,\n(a) a shipment for which a carrier is responsible consists of\n(i) a specified good or collection of specified goods that is listed in a single bill of lading, waybill or similar document that is issued by the carrier and that relates to the carriage of those goods by the carrier, or\n(ii) a specified good that is an empty cargo container that is not for sale and that is transported by the carrier but is not listed in a bill of lading, waybill or similar document; and\n(b) a shipment for which a freight forwarder is responsible consists of a specified good or collection of specified goods that is listed in a single bill of lading, waybill or similar document that is issued by the freight forwarder and that relates to the carriage of those goods.",
|
| 133 |
+
"citation": "Reporting of Imported Goods Regs, s. 2.1"
|
| 134 |
+
},
|
| 135 |
+
{
|
| 136 |
+
"act_code": "SOR-86-873",
|
| 137 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 138 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 139 |
+
"section": "3",
|
| 140 |
+
"marginal_note": "",
|
| 141 |
+
"part": "",
|
| 142 |
+
"division": "",
|
| 143 |
+
"heading": "Time for Reporting Goods",
|
| 144 |
+
"history": "SOR/96-156, s. 2(F); SOR/2015-90, s. 2",
|
| 145 |
+
"last_amended": "2015-05-06",
|
| 146 |
+
"in_force": "2015-05-06",
|
| 147 |
+
"status": "in force",
|
| 148 |
+
"current_to": "2019-06-21",
|
| 149 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-3.html",
|
| 150 |
+
"id": "SOR-86-873-s3",
|
| 151 |
+
"text": "3 Except as otherwise provided in these Regulations, all goods that are imported shall be reported under section 12 of the Act without delay after arrival in Canada.",
|
| 152 |
+
"citation": "Reporting of Imported Goods Regs, s. 3"
|
| 153 |
+
},
|
| 154 |
+
{
|
| 155 |
+
"act_code": "SOR-86-873",
|
| 156 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 157 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 158 |
+
"section": "3.1",
|
| 159 |
+
"marginal_note": "",
|
| 160 |
+
"part": "",
|
| 161 |
+
"division": "",
|
| 162 |
+
"heading": "Time for Reporting Goods",
|
| 163 |
+
"history": "SOR/2015-90, s. 2",
|
| 164 |
+
"last_amended": "2015-05-06",
|
| 165 |
+
"in_force": "2015-05-06",
|
| 166 |
+
"status": "in force",
|
| 167 |
+
"current_to": "2019-06-21",
|
| 168 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-3.1.html",
|
| 169 |
+
"id": "SOR-86-873-s3.1",
|
| 170 |
+
"text": "3.1 Subject to sections 8 and 9, specified goods that are imported by water shall be reported under section 12 of the Act without delay after the vessel that is transporting them lands at a customs office following arrival in Canada.",
|
| 171 |
+
"citation": "Reporting of Imported Goods Regs, s. 3.1"
|
| 172 |
+
},
|
| 173 |
+
{
|
| 174 |
+
"act_code": "SOR-86-873",
|
| 175 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 176 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 177 |
+
"section": "3.2",
|
| 178 |
+
"marginal_note": "",
|
| 179 |
+
"part": "",
|
| 180 |
+
"division": "",
|
| 181 |
+
"heading": "Time for Reporting Goods",
|
| 182 |
+
"history": "SOR/2015-90, s. 2",
|
| 183 |
+
"last_amended": "2015-05-06",
|
| 184 |
+
"in_force": "2015-05-06",
|
| 185 |
+
"status": "in force",
|
| 186 |
+
"current_to": "2019-06-21",
|
| 187 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-3.2.html",
|
| 188 |
+
"id": "SOR-86-873-s3.2",
|
| 189 |
+
"text": "3.2 Specified goods that are imported by air shall be reported under section 12 of the Act without delay after the aircraft that is transporting them is cleared by NAV CANADA to land at an airport following arrival in Canada.",
|
| 190 |
+
"citation": "Reporting of Imported Goods Regs, s. 3.2"
|
| 191 |
+
},
|
| 192 |
+
{
|
| 193 |
+
"act_code": "SOR-86-873",
|
| 194 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 195 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 196 |
+
"section": "4",
|
| 197 |
+
"marginal_note": "",
|
| 198 |
+
"part": "",
|
| 199 |
+
"division": "",
|
| 200 |
+
"heading": "Manner of Reporting Goods",
|
| 201 |
+
"history": "SOR/96-156, s. 4; SOR/2006-155, s. 2; SOR/2015-90, s. 2",
|
| 202 |
+
"last_amended": "2015-05-06",
|
| 203 |
+
"in_force": "2015-05-06",
|
| 204 |
+
"status": "in force",
|
| 205 |
+
"current_to": "2019-06-21",
|
| 206 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-4.html",
|
| 207 |
+
"id": "SOR-86-873-s4",
|
| 208 |
+
"text": "4 Unless a person is required to report goods in writing under section 5 or is permitted to report them orally under that section or in writing under section 12, they shall report the goods to the Agency by electronic means in accordance with the technical requirements, specifications and procedures that are set out in the Electronic Commerce Client Requirements Document.",
|
| 209 |
+
"citation": "Reporting of Imported Goods Regs, s. 4"
|
| 210 |
+
},
|
| 211 |
+
{
|
| 212 |
+
"act_code": "SOR-86-873",
|
| 213 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 214 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 215 |
+
"section": "5",
|
| 216 |
+
"marginal_note": "",
|
| 217 |
+
"part": "",
|
| 218 |
+
"division": "",
|
| 219 |
+
"heading": "Manner of Reporting Goods",
|
| 220 |
+
"history": "SOR/88-77, s. 2; SOR/95-409, s. 2; SOR/96-156, s. 5; SOR/98-53, s. 3; SOR/2005-175, s. 3; SOR/2005-387, s. 2; SOR/2006-148, s. 2; SOR/2006-155, s. 3; SOR/2015-90, s. 3",
|
| 221 |
+
"last_amended": "2015-05-06",
|
| 222 |
+
"in_force": "2015-05-06",
|
| 223 |
+
"status": "in force",
|
| 224 |
+
"current_to": "2019-06-21",
|
| 225 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-5.html",
|
| 226 |
+
"id": "SOR-86-873-s5-p1",
|
| 227 |
+
"text": "5\n(1) Subject to subsections (2) to (4), the following goods may be reported orally unless an officer requires the importer of the goods to report the goods in writing:\n(a) goods in the actual possession of a person arriving in Canada, or that form part of his baggage where the person and his baggage are being carried on board the same conveyance;\n(b) fishing vessels;\n(b.1) eligible goods that meet the requirements for release under paragraph 32(2)(b) of the Act if they are reported by a CSA carrier or if they are transported into Canada by a commercial highway conveyance as defined in section 1 of the Presentation of Persons (2003) Regulations and are reported by the driver of the conveyance who holds an authorization under those Regulations;\n(c) foreign based cargo containers engaged in international commercial transportation that are imported\n(i) under the control of a person who maintains an inventory of the containers that are used in international commercial transportation where the person\n(A) keeps records of all containers imported into Canada that would enable a customs officer to verify that the containers were not used in Canadian domestic service or that, if they were used in Canadian domestic service, all applicable duties thereon were paid, and\n(B) permits the customs officer access to the records of the containers referred to in clause (A), or\n(ii) by a person who leases containers for use in international commercial transportation where the person\n(A) keeps records of all containers imported into Canada that would enable a customs officer to verify that the containers were not used in Canadian domestic service or that, if they were used in Canadian domestic service, all applicable duties thereon were paid, and",
|
| 228 |
+
"citation": "Reporting of Imported Goods Regs, s. 5 (part 1 of 2)"
|
| 229 |
+
},
|
| 230 |
+
{
|
| 231 |
+
"act_code": "SOR-86-873",
|
| 232 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 233 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 234 |
+
"section": "5",
|
| 235 |
+
"marginal_note": "",
|
| 236 |
+
"part": "",
|
| 237 |
+
"division": "",
|
| 238 |
+
"heading": "Manner of Reporting Goods",
|
| 239 |
+
"history": "SOR/88-77, s. 2; SOR/95-409, s. 2; SOR/96-156, s. 5; SOR/98-53, s. 3; SOR/2005-175, s. 3; SOR/2005-387, s. 2; SOR/2006-148, s. 2; SOR/2006-155, s. 3; SOR/2015-90, s. 3",
|
| 240 |
+
"last_amended": "2015-05-06",
|
| 241 |
+
"in_force": "2015-05-06",
|
| 242 |
+
"status": "in force",
|
| 243 |
+
"current_to": "2019-06-21",
|
| 244 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-5.html",
|
| 245 |
+
"id": "SOR-86-873-s5-p2",
|
| 246 |
+
"text": "(B) permits the customs officer access to the records of the containers referred to in clause (A);\n(d) Canadian-based highway vehicles, aircraft and cargo containers that are built in Canada, or in respect of which duties have been paid, and that qualify for entry into Canada at a free rate of customs duty as Canadian goods returned that are classified under tariff item No. 9813.00.00 or 9814.00.00 in the List of Tariff Provisions; and\n(e) goods in respect of which information has been given to the Agency under subsection 12.1(1) of the Act in the circumstances set out in subsection 22(1) or 23(1).\n(f) [Repealed, SOR/2015-90, s. 3]\n(2) [Repealed, SOR/2005-387, s. 2]\n(3) Goods that are imported by a person arriving in Canada on board a commercial passenger conveyance other than a bus shall be reported in writing.\n(4) Goods in the actual possession of, or that form part of the baggage of, a crew member arriving in Canada aboard a freight train shall be reported in writing.",
|
| 247 |
+
"citation": "Reporting of Imported Goods Regs, s. 5 (part 2 of 2)"
|
| 248 |
+
},
|
| 249 |
+
{
|
| 250 |
+
"act_code": "SOR-86-873",
|
| 251 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 252 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 253 |
+
"section": "6",
|
| 254 |
+
"marginal_note": "",
|
| 255 |
+
"part": "",
|
| 256 |
+
"division": "",
|
| 257 |
+
"heading": "Exceptions to Reporting at the Nearest Customs Office",
|
| 258 |
+
"history": "",
|
| 259 |
+
"last_amended": "2015-05-06",
|
| 260 |
+
"in_force": "2015-05-06",
|
| 261 |
+
"status": "repealed",
|
| 262 |
+
"current_to": "2019-06-21",
|
| 263 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-6.html",
|
| 264 |
+
"id": "SOR-86-873-s6",
|
| 265 |
+
"text": "6 [Repealed, SOR/2015-90, s. 4]",
|
| 266 |
+
"citation": "Reporting of Imported Goods Regs, s. 6"
|
| 267 |
+
},
|
| 268 |
+
{
|
| 269 |
+
"act_code": "SOR-86-873",
|
| 270 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 271 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 272 |
+
"section": "7",
|
| 273 |
+
"marginal_note": "",
|
| 274 |
+
"part": "",
|
| 275 |
+
"division": "",
|
| 276 |
+
"heading": "Exceptions to Reporting at the Nearest Customs Office",
|
| 277 |
+
"history": "SOR/2006-155, s. 4(F)",
|
| 278 |
+
"last_amended": "2006-06-23",
|
| 279 |
+
"in_force": "2006-06-23",
|
| 280 |
+
"status": "in force",
|
| 281 |
+
"current_to": "2019-06-21",
|
| 282 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-7.html",
|
| 283 |
+
"id": "SOR-86-873-s7",
|
| 284 |
+
"text": "7\n(1) Goods in the actual possession of a person arriving in Canada aboard a commercial passenger conveyance who has as his destination a place outside Canada, and any goods being carried on board the same conveyance and forming part of his baggage, do not have to be reported, on condition that\n(a) the person does not disembark from the conveyance in Canada and the goods are not removed from the conveyance in Canada other than to be transferred under customs control directly to another commercial passenger conveyance for departure to a place outside Canada or directly to a designated holding area; and\n(b) where the person and goods are transferred under customs control directly to a designated holding area, the person does not leave and the goods are not removed from that designated holding area other than to board or to be loaded on board a commercial passenger conveyance for departure to a place outside Canada.\n(2) Goods in the actual possession of a person arriving in Canada aboard a commercial passenger conveyance who has as his destination another place in Canada at which there is a designated customs office, and any goods being carried on board the same conveyance and forming part of his baggage, may be reported at that designated customs office on condition that\n(a) the person does not disembark from the conveyance at the place of arrival in Canada and the goods are not removed from the conveyance at the place of arrival in Canada other than to be transferred under customs control directly to another commercial passenger conveyance for departure to that other place in Canada or directly to a designated holding area; and\n(b) where the person and goods are transferred under customs control directly to a designated holding area, the person does not leave and the goods are not removed from that designated holding area other than to board or to be loaded on board a commercial passenger conveyance for departure to that other place in Canada.",
|
| 285 |
+
"citation": "Reporting of Imported Goods Regs, s. 7"
|
| 286 |
+
},
|
| 287 |
+
{
|
| 288 |
+
"act_code": "SOR-86-873",
|
| 289 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 290 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 291 |
+
"section": "7.1",
|
| 292 |
+
"marginal_note": "",
|
| 293 |
+
"part": "",
|
| 294 |
+
"division": "",
|
| 295 |
+
"heading": "Exceptions to Reporting at the Nearest Customs Office",
|
| 296 |
+
"history": "SOR/96-156, s. 6",
|
| 297 |
+
"last_amended": "2006-03-22",
|
| 298 |
+
"in_force": "2006-03-22",
|
| 299 |
+
"status": "in force",
|
| 300 |
+
"current_to": "2019-06-21",
|
| 301 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-7.1.html",
|
| 302 |
+
"id": "SOR-86-873-s7.1",
|
| 303 |
+
"text": "7.1 Goods in the actual possession of, or that form part of the baggage of, a crew member arriving in Canada aboard a freight train shall be reported forthwith at a place specified by an officer.",
|
| 304 |
+
"citation": "Reporting of Imported Goods Regs, s. 7.1"
|
| 305 |
+
},
|
| 306 |
+
{
|
| 307 |
+
"act_code": "SOR-86-873",
|
| 308 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 309 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 310 |
+
"section": "7.2",
|
| 311 |
+
"marginal_note": "",
|
| 312 |
+
"part": "",
|
| 313 |
+
"division": "",
|
| 314 |
+
"heading": "Exceptions to Reporting at the Nearest Customs Office",
|
| 315 |
+
"history": "SOR/2015-90, s. 5",
|
| 316 |
+
"last_amended": "2015-05-06",
|
| 317 |
+
"in_force": "2015-05-06",
|
| 318 |
+
"status": "in force",
|
| 319 |
+
"current_to": "2019-06-21",
|
| 320 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-7.2.html",
|
| 321 |
+
"id": "SOR-86-873-s7.2",
|
| 322 |
+
"text": "7.2 If goods are reported under section 12 of the Act by electronic means, the report is not required to be made at the nearest customs office designated for that purpose.",
|
| 323 |
+
"citation": "Reporting of Imported Goods Regs, s. 7.2"
|
| 324 |
+
},
|
| 325 |
+
{
|
| 326 |
+
"act_code": "SOR-86-873",
|
| 327 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 328 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 329 |
+
"section": "8",
|
| 330 |
+
"marginal_note": "",
|
| 331 |
+
"part": "",
|
| 332 |
+
"division": "",
|
| 333 |
+
"heading": "Periodic Reporting",
|
| 334 |
+
"history": "SOR/2015-90, s. 6",
|
| 335 |
+
"last_amended": "2015-05-06",
|
| 336 |
+
"in_force": "2015-05-06",
|
| 337 |
+
"status": "in force",
|
| 338 |
+
"current_to": "2019-06-21",
|
| 339 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-8.html",
|
| 340 |
+
"id": "SOR-86-873-s8",
|
| 341 |
+
"text": "8 Canadian-built commercial fishing vessels and duty-paid fishing vessels that are registered under the Canada Shipping Act, 2001 and that are imported during a fishing season may be reported at the close of that fishing season if the vessels do not, after last having been reported under section 9 of the Reporting of Exported Goods Regulations,\n(a) take on ships stores other than diesel fuel;\n(b) land in a country other than Canada; or\n(c) pick up goods that are not the product of Canada and that have not been reported under section 12 of the Act.",
|
| 342 |
+
"citation": "Reporting of Imported Goods Regs, s. 8"
|
| 343 |
+
},
|
| 344 |
+
{
|
| 345 |
+
"act_code": "SOR-86-873",
|
| 346 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 347 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 348 |
+
"section": "9",
|
| 349 |
+
"marginal_note": "",
|
| 350 |
+
"part": "",
|
| 351 |
+
"division": "",
|
| 352 |
+
"heading": "Periodic Reporting",
|
| 353 |
+
"history": "SOR/88-77, s. 3; SOR/2015-90, s. 7",
|
| 354 |
+
"last_amended": "2015-05-06",
|
| 355 |
+
"in_force": "2015-05-06",
|
| 356 |
+
"status": "in force",
|
| 357 |
+
"current_to": "2019-06-21",
|
| 358 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-9.html",
|
| 359 |
+
"id": "SOR-86-873-s9",
|
| 360 |
+
"text": "9\n(1) A vessel that is used on a day solely or principally to transport highway conveyances or passengers across international waters may be reported on that day after the vessel’s last trip.\n(2) Subsection (1) does not apply if the vessel transports specified goods to Canada that are required to be reported by the person in charge of the vessel.",
|
| 361 |
+
"citation": "Reporting of Imported Goods Regs, s. 9"
|
| 362 |
+
},
|
| 363 |
+
{
|
| 364 |
+
"act_code": "SOR-86-873",
|
| 365 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 366 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 367 |
+
"section": "10",
|
| 368 |
+
"marginal_note": "",
|
| 369 |
+
"part": "",
|
| 370 |
+
"division": "",
|
| 371 |
+
"heading": "Periodic Reporting",
|
| 372 |
+
"history": "",
|
| 373 |
+
"last_amended": "2015-05-06",
|
| 374 |
+
"in_force": "2015-05-06",
|
| 375 |
+
"status": "repealed",
|
| 376 |
+
"current_to": "2019-06-21",
|
| 377 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-10.html",
|
| 378 |
+
"id": "SOR-86-873-s10",
|
| 379 |
+
"text": "10 [Repealed, SOR/2015-90, s. 7]",
|
| 380 |
+
"citation": "Reporting of Imported Goods Regs, s. 10"
|
| 381 |
+
},
|
| 382 |
+
{
|
| 383 |
+
"act_code": "SOR-86-873",
|
| 384 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 385 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 386 |
+
"section": "11",
|
| 387 |
+
"marginal_note": "",
|
| 388 |
+
"part": "",
|
| 389 |
+
"division": "",
|
| 390 |
+
"heading": "Periodic Reporting",
|
| 391 |
+
"history": "SOR/87-579, s. 1(F)",
|
| 392 |
+
"last_amended": "2006-03-22",
|
| 393 |
+
"in_force": "2006-03-22",
|
| 394 |
+
"status": "in force",
|
| 395 |
+
"current_to": "2019-06-21",
|
| 396 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-11.html",
|
| 397 |
+
"id": "SOR-86-873-s11",
|
| 398 |
+
"text": "11\n(1) Goods imported by means of a pipeline used by one importer only during any period commencing on the 20th day of one month and ending on the 19th day of the month next following may be reported on or before the last day of that month.\n(2) Goods that are part of a shipment of goods imported by means of a pipeline used by more than one importer may be reported forthwith on arrival of the whole shipment.",
|
| 399 |
+
"citation": "Reporting of Imported Goods Regs, s. 11"
|
| 400 |
+
},
|
| 401 |
+
{
|
| 402 |
+
"act_code": "SOR-86-873",
|
| 403 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 404 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 405 |
+
"section": "12",
|
| 406 |
+
"marginal_note": "",
|
| 407 |
+
"part": "",
|
| 408 |
+
"division": "",
|
| 409 |
+
"heading": "Report of Goods Unloaded Prior to Report",
|
| 410 |
+
"history": "SOR/2015-90, s. 8",
|
| 411 |
+
"last_amended": "2015-05-06",
|
| 412 |
+
"in_force": "2015-05-06",
|
| 413 |
+
"status": "in force",
|
| 414 |
+
"current_to": "2019-06-21",
|
| 415 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-12.html",
|
| 416 |
+
"id": "SOR-86-873-s12",
|
| 417 |
+
"text": "12 If a conveyance is unloaded in the circumstances set out in subsection 14(1) of the Act, the conveyance and the goods described in subsection 14(2) of the Act shall be reported under that subsection by telephone or other expedient means. The conveyance and goods shall then be reported under section 12 of the Act in writing or by electronic means without delay.",
|
| 418 |
+
"citation": "Reporting of Imported Goods Regs, s. 12"
|
| 419 |
+
},
|
| 420 |
+
{
|
| 421 |
+
"act_code": "SOR-86-873",
|
| 422 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 423 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 424 |
+
"section": "12.1",
|
| 425 |
+
"marginal_note": "",
|
| 426 |
+
"part": "",
|
| 427 |
+
"division": "",
|
| 428 |
+
"heading": "Report of Goods Unloaded Prior to Report",
|
| 429 |
+
"history": "",
|
| 430 |
+
"last_amended": "2015-05-06",
|
| 431 |
+
"in_force": "2015-05-06",
|
| 432 |
+
"status": "repealed",
|
| 433 |
+
"current_to": "2019-06-21",
|
| 434 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-12.1.html",
|
| 435 |
+
"id": "SOR-86-873-s12.1",
|
| 436 |
+
"text": "12.1 [Repealed, SOR/2015-90, s. 8]",
|
| 437 |
+
"citation": "Reporting of Imported Goods Regs, s. 12.1"
|
| 438 |
+
},
|
| 439 |
+
{
|
| 440 |
+
"act_code": "SOR-86-873",
|
| 441 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 442 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 443 |
+
"section": "12.2",
|
| 444 |
+
"marginal_note": "",
|
| 445 |
+
"part": "",
|
| 446 |
+
"division": "",
|
| 447 |
+
"heading": "Report of Goods Unloaded Prior to Report",
|
| 448 |
+
"history": "",
|
| 449 |
+
"last_amended": "2015-05-06",
|
| 450 |
+
"in_force": "2015-05-06",
|
| 451 |
+
"status": "repealed",
|
| 452 |
+
"current_to": "2019-06-21",
|
| 453 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-12.2.html",
|
| 454 |
+
"id": "SOR-86-873-s12.2",
|
| 455 |
+
"text": "12.2 [Repealed, SOR/2015-90, s. 8]",
|
| 456 |
+
"citation": "Reporting of Imported Goods Regs, s. 12.2"
|
| 457 |
+
},
|
| 458 |
+
{
|
| 459 |
+
"act_code": "SOR-86-873",
|
| 460 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 461 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 462 |
+
"section": "12.3",
|
| 463 |
+
"marginal_note": "",
|
| 464 |
+
"part": "",
|
| 465 |
+
"division": "",
|
| 466 |
+
"heading": "Report of Goods Unloaded Prior to Report",
|
| 467 |
+
"history": "",
|
| 468 |
+
"last_amended": "2015-05-06",
|
| 469 |
+
"in_force": "2015-05-06",
|
| 470 |
+
"status": "repealed",
|
| 471 |
+
"current_to": "2019-06-21",
|
| 472 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-12.3.html",
|
| 473 |
+
"id": "SOR-86-873-s12.3",
|
| 474 |
+
"text": "12.3 [Repealed, SOR/2015-90, s. 8]",
|
| 475 |
+
"citation": "Reporting of Imported Goods Regs, s. 12.3"
|
| 476 |
+
},
|
| 477 |
+
{
|
| 478 |
+
"act_code": "SOR-86-873",
|
| 479 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 480 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 481 |
+
"section": "13",
|
| 482 |
+
"marginal_note": "",
|
| 483 |
+
"part": "",
|
| 484 |
+
"division": "",
|
| 485 |
+
"heading": "Carrier",
|
| 486 |
+
"history": "SOR/88-77, s. 3(E); SOR/2006-148, s. 5; SOR/2015-90, ss. 8, 30",
|
| 487 |
+
"last_amended": "2015-10-24",
|
| 488 |
+
"in_force": "2015-10-24",
|
| 489 |
+
"status": "in force",
|
| 490 |
+
"current_to": "2019-06-21",
|
| 491 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-13.html",
|
| 492 |
+
"id": "SOR-86-873-s13",
|
| 493 |
+
"text": "13\n(1) If specified goods will be transported to Canada by vessel, the carrier that operates the vessel is required under subsection 12.1(1) of the Act to give the Agency\n(a) the information set out in Part 1 of Schedule 1;\n(b) for each shipment for which the carrier is responsible, the information set out in Part 1 of Schedule 2 in connection with the vessel and the goods in the shipment; and\n(c) the information set out in Schedule 3 if there is a cargo container on board the vessel.\n(2) Despite subsection (1), the carrier is not required to give the information if\n(a) the vessel will arrive in Canada directly from the United States or Mexico;\n(b) every importer of the specified goods is a CSA importer;\n(c) the carrier is a CSA carrier;\n(d) every importer of the specified goods has given written instructions to the carrier to submit a request to the Agency for the release of those goods under paragraph 32(2)(b) of the Act; and\n(e) no federal or provincial Act or regulation requires that a permit, licence or similar document be provided to the Agency before any of the specified goods are released.",
|
| 494 |
+
"citation": "Reporting of Imported Goods Regs, s. 13"
|
| 495 |
+
},
|
| 496 |
+
{
|
| 497 |
+
"act_code": "SOR-86-873",
|
| 498 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 499 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 500 |
+
"section": "13.1",
|
| 501 |
+
"marginal_note": "",
|
| 502 |
+
"part": "",
|
| 503 |
+
"division": "",
|
| 504 |
+
"heading": "Carrier",
|
| 505 |
+
"history": "",
|
| 506 |
+
"last_amended": "2015-05-06",
|
| 507 |
+
"in_force": "2015-05-06",
|
| 508 |
+
"status": "repealed",
|
| 509 |
+
"current_to": "2019-06-21",
|
| 510 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-13.1.html",
|
| 511 |
+
"id": "SOR-86-873-s13.1",
|
| 512 |
+
"text": "13.1 [Repealed, SOR/2015-90, s. 8]",
|
| 513 |
+
"citation": "Reporting of Imported Goods Regs, s. 13.1"
|
| 514 |
+
},
|
| 515 |
+
{
|
| 516 |
+
"act_code": "SOR-86-873",
|
| 517 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 518 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 519 |
+
"section": "13.2",
|
| 520 |
+
"marginal_note": "",
|
| 521 |
+
"part": "",
|
| 522 |
+
"division": "",
|
| 523 |
+
"heading": "Carrier",
|
| 524 |
+
"history": "",
|
| 525 |
+
"last_amended": "2015-05-06",
|
| 526 |
+
"in_force": "2015-05-06",
|
| 527 |
+
"status": "repealed",
|
| 528 |
+
"current_to": "2019-06-21",
|
| 529 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-13.2.html",
|
| 530 |
+
"id": "SOR-86-873-s13.2",
|
| 531 |
+
"text": "13.2 [Repealed, SOR/2015-90, s. 8]",
|
| 532 |
+
"citation": "Reporting of Imported Goods Regs, s. 13.2"
|
| 533 |
+
},
|
| 534 |
+
{
|
| 535 |
+
"act_code": "SOR-86-873",
|
| 536 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 537 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 538 |
+
"section": "13.3",
|
| 539 |
+
"marginal_note": "",
|
| 540 |
+
"part": "",
|
| 541 |
+
"division": "",
|
| 542 |
+
"heading": "Carrier",
|
| 543 |
+
"history": "",
|
| 544 |
+
"last_amended": "2015-05-06",
|
| 545 |
+
"in_force": "2015-05-06",
|
| 546 |
+
"status": "repealed",
|
| 547 |
+
"current_to": "2019-06-21",
|
| 548 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-13.3.html",
|
| 549 |
+
"id": "SOR-86-873-s13.3",
|
| 550 |
+
"text": "13.3 [Repealed, SOR/2015-90, s. 8]",
|
| 551 |
+
"citation": "Reporting of Imported Goods Regs, s. 13.3"
|
| 552 |
+
},
|
| 553 |
+
{
|
| 554 |
+
"act_code": "SOR-86-873",
|
| 555 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 556 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 557 |
+
"section": "13.4",
|
| 558 |
+
"marginal_note": "",
|
| 559 |
+
"part": "",
|
| 560 |
+
"division": "",
|
| 561 |
+
"heading": "Carrier",
|
| 562 |
+
"history": "",
|
| 563 |
+
"last_amended": "2015-05-06",
|
| 564 |
+
"in_force": "2015-05-06",
|
| 565 |
+
"status": "repealed",
|
| 566 |
+
"current_to": "2019-06-21",
|
| 567 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-13.4.html",
|
| 568 |
+
"id": "SOR-86-873-s13.4",
|
| 569 |
+
"text": "13.4 [Repealed, SOR/2015-90, s. 8]",
|
| 570 |
+
"citation": "Reporting of Imported Goods Regs, s. 13.4"
|
| 571 |
+
},
|
| 572 |
+
{
|
| 573 |
+
"act_code": "SOR-86-873",
|
| 574 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 575 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 576 |
+
"section": "13.5",
|
| 577 |
+
"marginal_note": "",
|
| 578 |
+
"part": "",
|
| 579 |
+
"division": "",
|
| 580 |
+
"heading": "Carrier",
|
| 581 |
+
"history": "",
|
| 582 |
+
"last_amended": "2015-05-06",
|
| 583 |
+
"in_force": "2015-05-06",
|
| 584 |
+
"status": "repealed",
|
| 585 |
+
"current_to": "2019-06-21",
|
| 586 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-13.5.html",
|
| 587 |
+
"id": "SOR-86-873-s13.5",
|
| 588 |
+
"text": "13.5 [Repealed, SOR/2015-90, s. 8]",
|
| 589 |
+
"citation": "Reporting of Imported Goods Regs, s. 13.5"
|
| 590 |
+
},
|
| 591 |
+
{
|
| 592 |
+
"act_code": "SOR-86-873",
|
| 593 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 594 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 595 |
+
"section": "13.6",
|
| 596 |
+
"marginal_note": "",
|
| 597 |
+
"part": "",
|
| 598 |
+
"division": "",
|
| 599 |
+
"heading": "Carrier",
|
| 600 |
+
"history": "",
|
| 601 |
+
"last_amended": "2015-05-06",
|
| 602 |
+
"in_force": "2015-05-06",
|
| 603 |
+
"status": "repealed",
|
| 604 |
+
"current_to": "2019-06-21",
|
| 605 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-13.6.html",
|
| 606 |
+
"id": "SOR-86-873-s13.6",
|
| 607 |
+
"text": "13.6 [Repealed, SOR/2015-90, s. 8]",
|
| 608 |
+
"citation": "Reporting of Imported Goods Regs, s. 13.6"
|
| 609 |
+
},
|
| 610 |
+
{
|
| 611 |
+
"act_code": "SOR-86-873",
|
| 612 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 613 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 614 |
+
"section": "13.7",
|
| 615 |
+
"marginal_note": "",
|
| 616 |
+
"part": "",
|
| 617 |
+
"division": "",
|
| 618 |
+
"heading": "Carrier",
|
| 619 |
+
"history": "",
|
| 620 |
+
"last_amended": "2015-05-06",
|
| 621 |
+
"in_force": "2015-05-06",
|
| 622 |
+
"status": "repealed",
|
| 623 |
+
"current_to": "2019-06-21",
|
| 624 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-13.7.html",
|
| 625 |
+
"id": "SOR-86-873-s13.7",
|
| 626 |
+
"text": "13.7 [Repealed, SOR/2015-90, s. 8]",
|
| 627 |
+
"citation": "Reporting of Imported Goods Regs, s. 13.7"
|
| 628 |
+
},
|
| 629 |
+
{
|
| 630 |
+
"act_code": "SOR-86-873",
|
| 631 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 632 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 633 |
+
"section": "13.71",
|
| 634 |
+
"marginal_note": "",
|
| 635 |
+
"part": "",
|
| 636 |
+
"division": "",
|
| 637 |
+
"heading": "Carrier",
|
| 638 |
+
"history": "",
|
| 639 |
+
"last_amended": "2015-05-06",
|
| 640 |
+
"in_force": "2015-05-06",
|
| 641 |
+
"status": "repealed",
|
| 642 |
+
"current_to": "2019-06-21",
|
| 643 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-13.71.html",
|
| 644 |
+
"id": "SOR-86-873-s13.71",
|
| 645 |
+
"text": "13.71 [Repealed, SOR/2015-90, s. 8]",
|
| 646 |
+
"citation": "Reporting of Imported Goods Regs, s. 13.71"
|
| 647 |
+
},
|
| 648 |
+
{
|
| 649 |
+
"act_code": "SOR-86-873",
|
| 650 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 651 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 652 |
+
"section": "13.8",
|
| 653 |
+
"marginal_note": "",
|
| 654 |
+
"part": "",
|
| 655 |
+
"division": "",
|
| 656 |
+
"heading": "Carrier",
|
| 657 |
+
"history": "",
|
| 658 |
+
"last_amended": "2015-05-06",
|
| 659 |
+
"in_force": "2015-05-06",
|
| 660 |
+
"status": "repealed",
|
| 661 |
+
"current_to": "2019-06-21",
|
| 662 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-13.8.html",
|
| 663 |
+
"id": "SOR-86-873-s13.8",
|
| 664 |
+
"text": "13.8 [Repealed, SOR/2015-90, s. 8]",
|
| 665 |
+
"citation": "Reporting of Imported Goods Regs, s. 13.8"
|
| 666 |
+
},
|
| 667 |
+
{
|
| 668 |
+
"act_code": "SOR-86-873",
|
| 669 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 670 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 671 |
+
"section": "13.81",
|
| 672 |
+
"marginal_note": "",
|
| 673 |
+
"part": "",
|
| 674 |
+
"division": "",
|
| 675 |
+
"heading": "Carrier",
|
| 676 |
+
"history": "",
|
| 677 |
+
"last_amended": "2015-05-06",
|
| 678 |
+
"in_force": "2015-05-06",
|
| 679 |
+
"status": "repealed",
|
| 680 |
+
"current_to": "2019-06-21",
|
| 681 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-13.81.html",
|
| 682 |
+
"id": "SOR-86-873-s13.81",
|
| 683 |
+
"text": "13.81 [Repealed, SOR/2015-90, s. 8]",
|
| 684 |
+
"citation": "Reporting of Imported Goods Regs, s. 13.81"
|
| 685 |
+
},
|
| 686 |
+
{
|
| 687 |
+
"act_code": "SOR-86-873",
|
| 688 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 689 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 690 |
+
"section": "13.82",
|
| 691 |
+
"marginal_note": "",
|
| 692 |
+
"part": "",
|
| 693 |
+
"division": "",
|
| 694 |
+
"heading": "Carrier",
|
| 695 |
+
"history": "",
|
| 696 |
+
"last_amended": "2015-05-06",
|
| 697 |
+
"in_force": "2015-05-06",
|
| 698 |
+
"status": "repealed",
|
| 699 |
+
"current_to": "2019-06-21",
|
| 700 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-13.82.html",
|
| 701 |
+
"id": "SOR-86-873-s13.82",
|
| 702 |
+
"text": "13.82 [Repealed, SOR/2015-90, s. 8]",
|
| 703 |
+
"citation": "Reporting of Imported Goods Regs, s. 13.82"
|
| 704 |
+
},
|
| 705 |
+
{
|
| 706 |
+
"act_code": "SOR-86-873",
|
| 707 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 708 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 709 |
+
"section": "13.83",
|
| 710 |
+
"marginal_note": "",
|
| 711 |
+
"part": "",
|
| 712 |
+
"division": "",
|
| 713 |
+
"heading": "Carrier",
|
| 714 |
+
"history": "",
|
| 715 |
+
"last_amended": "2015-05-06",
|
| 716 |
+
"in_force": "2015-05-06",
|
| 717 |
+
"status": "repealed",
|
| 718 |
+
"current_to": "2019-06-21",
|
| 719 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-13.83.html",
|
| 720 |
+
"id": "SOR-86-873-s13.83",
|
| 721 |
+
"text": "13.83 [Repealed, SOR/2015-90, s. 8]",
|
| 722 |
+
"citation": "Reporting of Imported Goods Regs, s. 13.83"
|
| 723 |
+
},
|
| 724 |
+
{
|
| 725 |
+
"act_code": "SOR-86-873",
|
| 726 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 727 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 728 |
+
"section": "13.84",
|
| 729 |
+
"marginal_note": "",
|
| 730 |
+
"part": "",
|
| 731 |
+
"division": "",
|
| 732 |
+
"heading": "Carrier",
|
| 733 |
+
"history": "",
|
| 734 |
+
"last_amended": "2015-05-06",
|
| 735 |
+
"in_force": "2015-05-06",
|
| 736 |
+
"status": "repealed",
|
| 737 |
+
"current_to": "2019-06-21",
|
| 738 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-13.84.html",
|
| 739 |
+
"id": "SOR-86-873-s13.84",
|
| 740 |
+
"text": "13.84 [Repealed, SOR/2015-90, s. 8]",
|
| 741 |
+
"citation": "Reporting of Imported Goods Regs, s. 13.84"
|
| 742 |
+
},
|
| 743 |
+
{
|
| 744 |
+
"act_code": "SOR-86-873",
|
| 745 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 746 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 747 |
+
"section": "13.85",
|
| 748 |
+
"marginal_note": "",
|
| 749 |
+
"part": "",
|
| 750 |
+
"division": "",
|
| 751 |
+
"heading": "Carrier",
|
| 752 |
+
"history": "",
|
| 753 |
+
"last_amended": "2015-05-06",
|
| 754 |
+
"in_force": "2015-05-06",
|
| 755 |
+
"status": "repealed",
|
| 756 |
+
"current_to": "2019-06-21",
|
| 757 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-13.85.html",
|
| 758 |
+
"id": "SOR-86-873-s13.85",
|
| 759 |
+
"text": "13.85 [Repealed, SOR/2015-90, s. 8]",
|
| 760 |
+
"citation": "Reporting of Imported Goods Regs, s. 13.85"
|
| 761 |
+
},
|
| 762 |
+
{
|
| 763 |
+
"act_code": "SOR-86-873",
|
| 764 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 765 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 766 |
+
"section": "13.86",
|
| 767 |
+
"marginal_note": "",
|
| 768 |
+
"part": "",
|
| 769 |
+
"division": "",
|
| 770 |
+
"heading": "Carrier",
|
| 771 |
+
"history": "",
|
| 772 |
+
"last_amended": "2015-05-06",
|
| 773 |
+
"in_force": "2015-05-06",
|
| 774 |
+
"status": "repealed",
|
| 775 |
+
"current_to": "2019-06-21",
|
| 776 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-13.86.html",
|
| 777 |
+
"id": "SOR-86-873-s13.86",
|
| 778 |
+
"text": "13.86 [Repealed, SOR/2015-90, s. 8]",
|
| 779 |
+
"citation": "Reporting of Imported Goods Regs, s. 13.86"
|
| 780 |
+
},
|
| 781 |
+
{
|
| 782 |
+
"act_code": "SOR-86-873",
|
| 783 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 784 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 785 |
+
"section": "13.87",
|
| 786 |
+
"marginal_note": "",
|
| 787 |
+
"part": "",
|
| 788 |
+
"division": "",
|
| 789 |
+
"heading": "Carrier",
|
| 790 |
+
"history": "",
|
| 791 |
+
"last_amended": "2015-05-06",
|
| 792 |
+
"in_force": "2015-05-06",
|
| 793 |
+
"status": "repealed",
|
| 794 |
+
"current_to": "2019-06-21",
|
| 795 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-13.87.html",
|
| 796 |
+
"id": "SOR-86-873-s13.87",
|
| 797 |
+
"text": "13.87 [Repealed, SOR/2015-90, s. 8]",
|
| 798 |
+
"citation": "Reporting of Imported Goods Regs, s. 13.87"
|
| 799 |
+
},
|
| 800 |
+
{
|
| 801 |
+
"act_code": "SOR-86-873",
|
| 802 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 803 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 804 |
+
"section": "13.88",
|
| 805 |
+
"marginal_note": "",
|
| 806 |
+
"part": "",
|
| 807 |
+
"division": "",
|
| 808 |
+
"heading": "Carrier",
|
| 809 |
+
"history": "",
|
| 810 |
+
"last_amended": "2015-05-06",
|
| 811 |
+
"in_force": "2015-05-06",
|
| 812 |
+
"status": "repealed",
|
| 813 |
+
"current_to": "2019-06-21",
|
| 814 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-13.88.html",
|
| 815 |
+
"id": "SOR-86-873-s13.88",
|
| 816 |
+
"text": "13.88 [Repealed, SOR/2015-90, s. 8]",
|
| 817 |
+
"citation": "Reporting of Imported Goods Regs, s. 13.88"
|
| 818 |
+
},
|
| 819 |
+
{
|
| 820 |
+
"act_code": "SOR-86-873",
|
| 821 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 822 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 823 |
+
"section": "13.89",
|
| 824 |
+
"marginal_note": "",
|
| 825 |
+
"part": "",
|
| 826 |
+
"division": "",
|
| 827 |
+
"heading": "Carrier",
|
| 828 |
+
"history": "",
|
| 829 |
+
"last_amended": "2015-05-06",
|
| 830 |
+
"in_force": "2015-05-06",
|
| 831 |
+
"status": "repealed",
|
| 832 |
+
"current_to": "2019-06-21",
|
| 833 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-13.89.html",
|
| 834 |
+
"id": "SOR-86-873-s13.89",
|
| 835 |
+
"text": "13.89 [Repealed, SOR/2015-90, s. 8]",
|
| 836 |
+
"citation": "Reporting of Imported Goods Regs, s. 13.89"
|
| 837 |
+
},
|
| 838 |
+
{
|
| 839 |
+
"act_code": "SOR-86-873",
|
| 840 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 841 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 842 |
+
"section": "13.9",
|
| 843 |
+
"marginal_note": "",
|
| 844 |
+
"part": "",
|
| 845 |
+
"division": "",
|
| 846 |
+
"heading": "Carrier",
|
| 847 |
+
"history": "",
|
| 848 |
+
"last_amended": "2015-05-06",
|
| 849 |
+
"in_force": "2015-05-06",
|
| 850 |
+
"status": "repealed",
|
| 851 |
+
"current_to": "2019-06-21",
|
| 852 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-13.9.html",
|
| 853 |
+
"id": "SOR-86-873-s13.9",
|
| 854 |
+
"text": "13.9 [Repealed, SOR/2015-90, s. 8]",
|
| 855 |
+
"citation": "Reporting of Imported Goods Regs, s. 13.9"
|
| 856 |
+
},
|
| 857 |
+
{
|
| 858 |
+
"act_code": "SOR-86-873",
|
| 859 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 860 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 861 |
+
"section": "13.91",
|
| 862 |
+
"marginal_note": "",
|
| 863 |
+
"part": "",
|
| 864 |
+
"division": "",
|
| 865 |
+
"heading": "Carrier",
|
| 866 |
+
"history": "",
|
| 867 |
+
"last_amended": "2015-05-06",
|
| 868 |
+
"in_force": "2015-05-06",
|
| 869 |
+
"status": "repealed",
|
| 870 |
+
"current_to": "2019-06-21",
|
| 871 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-13.91.html",
|
| 872 |
+
"id": "SOR-86-873-s13.91",
|
| 873 |
+
"text": "13.91 [Repealed, SOR/2015-90, s. 8]",
|
| 874 |
+
"citation": "Reporting of Imported Goods Regs, s. 13.91"
|
| 875 |
+
},
|
| 876 |
+
{
|
| 877 |
+
"act_code": "SOR-86-873",
|
| 878 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 879 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 880 |
+
"section": "14",
|
| 881 |
+
"marginal_note": "",
|
| 882 |
+
"part": "",
|
| 883 |
+
"division": "",
|
| 884 |
+
"heading": "Carrier",
|
| 885 |
+
"history": "SOR/2015-90, s. 8",
|
| 886 |
+
"last_amended": "2015-05-06",
|
| 887 |
+
"in_force": "2015-05-06",
|
| 888 |
+
"status": "in force",
|
| 889 |
+
"current_to": "2019-06-21",
|
| 890 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-14.html",
|
| 891 |
+
"id": "SOR-86-873-s14",
|
| 892 |
+
"text": "14\n(1) The carrier shall give the Agency the information set out in Part 1 of Schedule 1\n(a) at least 96 hours before the vessel is scheduled to arrive at its port of arrival if there is a cargo container on board the vessel; and\n(b) at least 24 hours before the vessel is scheduled to arrive at its port of arrival in any other case.\n(2) Despite subsection (1), if the vessel will arrive in Canada directly from the United States or Puerto Rico and all of the shipments for which the carrier is responsible were loaded onto it in the United States or Puerto Rico, the carrier shall give the information\n(a) at least four hours before the vessel is scheduled to arrive at its port of arrival if all of those shipments consist of empty cargo containers that are not for sale; and\n(b) at least 24 hours before the vessel is scheduled to arrive at its port of arrival in any other case.\n(3) Despite subsections (1) and (2), the carrier shall give the information before or at the time the vessel leaves the last foreign port before its arrival in Canada if the duration of the voyage from that foreign port to the vessel’s port of arrival is less than the period within which the information would otherwise be given.",
|
| 893 |
+
"citation": "Reporting of Imported Goods Regs, s. 14"
|
| 894 |
+
},
|
| 895 |
+
{
|
| 896 |
+
"act_code": "SOR-86-873",
|
| 897 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 898 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 899 |
+
"section": "15",
|
| 900 |
+
"marginal_note": "",
|
| 901 |
+
"part": "",
|
| 902 |
+
"division": "",
|
| 903 |
+
"heading": "Carrier",
|
| 904 |
+
"history": "SOR/2015-90, s. 8",
|
| 905 |
+
"last_amended": "2015-05-06",
|
| 906 |
+
"in_force": "2015-05-06",
|
| 907 |
+
"status": "in force",
|
| 908 |
+
"current_to": "2019-06-21",
|
| 909 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-15.html",
|
| 910 |
+
"id": "SOR-86-873-s15",
|
| 911 |
+
"text": "15\n(1) The carrier shall give the Agency the information set out in Part 1 of Schedule 2\n(a) at least 24 hours before the shipment is loaded onto the vessel if all or part of the shipment is in a cargo container or if the shipment consists of one or more empty cargo containers that are for sale;\n(b) at least 24 hours before the vessel is scheduled to arrive at its port of arrival if the shipment consists of either bulk goods or break-bulk goods; and\n(c) at least 96 hours before the vessel is scheduled to arrive at its port of arrival if the shipment consists of an empty cargo container that is not for sale.\n(2) Despite subsection (1), if the vessel will arrive in Canada directly from the United States or Puerto Rico and the shipment was loaded onto it in the United States or Puerto Rico, the carrier shall give the information\n(a) at least four hours before the vessel is scheduled to arrive at its port of arrival if the shipment consists of an empty cargo container that is not for sale; and\n(b) at least 24 hours before the vessel is scheduled to arrive at its port of arrival in any other case.\n(3) Despite paragraphs (1)(b) and (c) and subsection (2), the carrier shall give the information before or at the time the vessel leaves the last foreign port before its arrival in Canada if the duration of the voyage from that foreign port to the vessel’s port of arrival is less than the period within which the information would otherwise be given.",
|
| 912 |
+
"citation": "Reporting of Imported Goods Regs, s. 15"
|
| 913 |
+
},
|
| 914 |
+
{
|
| 915 |
+
"act_code": "SOR-86-873",
|
| 916 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 917 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 918 |
+
"section": "15.1",
|
| 919 |
+
"marginal_note": "",
|
| 920 |
+
"part": "",
|
| 921 |
+
"division": "",
|
| 922 |
+
"heading": "Carrier",
|
| 923 |
+
"history": "SOR/2015-90, s. 31",
|
| 924 |
+
"last_amended": "2015-10-24",
|
| 925 |
+
"in_force": "2015-10-24",
|
| 926 |
+
"status": "in force",
|
| 927 |
+
"current_to": "2019-06-21",
|
| 928 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-15.1.html",
|
| 929 |
+
"id": "SOR-86-873-s15.1",
|
| 930 |
+
"text": "15.1 The carrier shall give the Agency the information set out in Schedule 3 within 48 hours after the vessel leaves the last foreign port before its arrival in Canada.",
|
| 931 |
+
"citation": "Reporting of Imported Goods Regs, s. 15.1"
|
| 932 |
+
},
|
| 933 |
+
{
|
| 934 |
+
"act_code": "SOR-86-873",
|
| 935 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 936 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 937 |
+
"section": "15.2",
|
| 938 |
+
"marginal_note": "",
|
| 939 |
+
"part": "",
|
| 940 |
+
"division": "",
|
| 941 |
+
"heading": "Freight Forwarder",
|
| 942 |
+
"history": "SOR/2015-90, s. 31",
|
| 943 |
+
"last_amended": "2015-10-24",
|
| 944 |
+
"in_force": "2015-10-24",
|
| 945 |
+
"status": "in force",
|
| 946 |
+
"current_to": "2019-06-21",
|
| 947 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-15.2.html",
|
| 948 |
+
"id": "SOR-86-873-s15.2",
|
| 949 |
+
"text": "15.2 If one or more shipments for which a freight forwarder is responsible will be transported to Canada by vessel, the freight forwarder is required under subsection 12.1(1) of the Act to give the Agency, for each shipment,\n(a) the information set out in Part 1.1 of Schedule 2 if the vessel will travel from a place outside Canada through Canada to another place outside Canada and the shipment will remain on board the vessel while the vessel is in Canada; or\n(b) the information set out in Part 4 of Schedule 2 if the shipment will be unloaded from the vessel either to remain in Canada or to be transported on board another conveyance to a place outside Canada.",
|
| 950 |
+
"citation": "Reporting of Imported Goods Regs, s. 15.2"
|
| 951 |
+
},
|
| 952 |
+
{
|
| 953 |
+
"act_code": "SOR-86-873",
|
| 954 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 955 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 956 |
+
"section": "15.3",
|
| 957 |
+
"marginal_note": "",
|
| 958 |
+
"part": "",
|
| 959 |
+
"division": "",
|
| 960 |
+
"heading": "Freight Forwarder",
|
| 961 |
+
"history": "SOR/2015-90, s. 31",
|
| 962 |
+
"last_amended": "2015-10-24",
|
| 963 |
+
"in_force": "2015-10-24",
|
| 964 |
+
"status": "in force",
|
| 965 |
+
"current_to": "2019-06-21",
|
| 966 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-15.3.html",
|
| 967 |
+
"id": "SOR-86-873-s15.3",
|
| 968 |
+
"text": "15.3\n(1) The freight forwarder shall give the Agency the information\n(a) at least 24 hours before the shipment is loaded onto the vessel if all or part of the shipment is in a cargo container; and\n(b) at least 24 hours before the vessel is scheduled to arrive at its port of arrival in any other case.\n(2) Despite paragraph (1)(a), if the vessel will arrive in Canada directly from the United States or Puerto Rico and the shipment was loaded onto it in the United States or Puerto Rico, the freight forwarder shall give the information at least 24 hours before the vessel is scheduled to arrive at its port of arrival.\n(3) Despite paragraph (1)(b) and subsection (2), the freight forwarder shall give the information before or at the time the vessel leaves the last foreign port before its arrival in Canada if the duration of the voyage from that foreign port to the vessel’s port of arrival is less than 24 hours.",
|
| 969 |
+
"citation": "Reporting of Imported Goods Regs, s. 15.3"
|
| 970 |
+
},
|
| 971 |
+
{
|
| 972 |
+
"act_code": "SOR-86-873",
|
| 973 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 974 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 975 |
+
"section": "16",
|
| 976 |
+
"marginal_note": "",
|
| 977 |
+
"part": "",
|
| 978 |
+
"division": "",
|
| 979 |
+
"heading": "Carrier",
|
| 980 |
+
"history": "SOR/2015-90, s. 8",
|
| 981 |
+
"last_amended": "2015-05-06",
|
| 982 |
+
"in_force": "2015-05-06",
|
| 983 |
+
"status": "in force",
|
| 984 |
+
"current_to": "2019-06-21",
|
| 985 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-16.html",
|
| 986 |
+
"id": "SOR-86-873-s16",
|
| 987 |
+
"text": "16\n(1) If specified goods will be transported to Canada by aircraft, the carrier that operates the aircraft is required under subsection 12.1(1) of the Act to give the Agency\n(a) the information set out in Part 2 of Schedule 1; and\n(b) for each shipment for which the carrier is responsible, the information set out in Part 2 of Schedule 2 in connection with the aircraft and the goods in the shipment.\n(2) Despite subsection (1), the carrier is not required to give the information if\n(a) the aircraft will arrive in Canada directly from the United States or Mexico;\n(b) every importer of the specified goods is a CSA importer;\n(c) the carrier is a CSA carrier;\n(d) every importer of the specified goods has given written instructions to the carrier to submit a request to the Agency for the release of those goods under paragraph 32(2)(b) of the Act; and\n(e) no federal or provincial Act or regulation requires that a permit, licence or similar document be provided to the Agency before any of the specified goods are released.\n(3) Despite subsection (1), the carrier is not required to give the information set out in Part 2 of Schedule 2 for a shipment if it consists of goods that the carrier will transport as or on behalf of a courier and those goods will be released under subsection 32(4) of the Act before the accounting required under subsection 32(1) of the Act and the payment of duties.",
|
| 988 |
+
"citation": "Reporting of Imported Goods Regs, s. 16"
|
| 989 |
+
},
|
| 990 |
+
{
|
| 991 |
+
"act_code": "SOR-86-873",
|
| 992 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 993 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 994 |
+
"section": "17",
|
| 995 |
+
"marginal_note": "",
|
| 996 |
+
"part": "",
|
| 997 |
+
"division": "",
|
| 998 |
+
"heading": "Carrier",
|
| 999 |
+
"history": "SOR/2015-90, s. 8",
|
| 1000 |
+
"last_amended": "2015-05-06",
|
| 1001 |
+
"in_force": "2015-05-06",
|
| 1002 |
+
"status": "in force",
|
| 1003 |
+
"current_to": "2019-06-21",
|
| 1004 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-17.html",
|
| 1005 |
+
"id": "SOR-86-873-s17",
|
| 1006 |
+
"text": "17 The carrier shall give the Agency the information no later than four hours before the aircraft is scheduled to arrive at its airport of arrival or, if the duration of the flight to Canada is less than four hours, no later than the aircraft’s time of departure.",
|
| 1007 |
+
"citation": "Reporting of Imported Goods Regs, s. 17"
|
| 1008 |
+
},
|
| 1009 |
+
{
|
| 1010 |
+
"act_code": "SOR-86-873",
|
| 1011 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 1012 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 1013 |
+
"section": "17.1",
|
| 1014 |
+
"marginal_note": "",
|
| 1015 |
+
"part": "",
|
| 1016 |
+
"division": "",
|
| 1017 |
+
"heading": "Freight Forwarder",
|
| 1018 |
+
"history": "SOR/2015-90, s. 33",
|
| 1019 |
+
"last_amended": "2015-10-24",
|
| 1020 |
+
"in_force": "2015-10-24",
|
| 1021 |
+
"status": "in force",
|
| 1022 |
+
"current_to": "2019-06-21",
|
| 1023 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-17.1.html",
|
| 1024 |
+
"id": "SOR-86-873-s17.1",
|
| 1025 |
+
"text": "17.1 If one or more shipments for which a freight forwarder is responsible will be transported to Canada by aircraft, the freight forwarder is required under subsection 12.1(1) of the Act to give the Agency, for each shipment,\n(a) the information set out in Part 2.1 of Schedule 2 if the aircraft will travel from a place outside Canada through Canada to another place outside Canada and the shipment will remain on board the aircraft while the aircraft is in Canada; or\n(b) the information set out in Part 4 of Schedule 2 if the shipment will be unloaded from the aircraft either to remain in Canada or to be transported on board another conveyance to a place outside Canada.",
|
| 1026 |
+
"citation": "Reporting of Imported Goods Regs, s. 17.1"
|
| 1027 |
+
},
|
| 1028 |
+
{
|
| 1029 |
+
"act_code": "SOR-86-873",
|
| 1030 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 1031 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 1032 |
+
"section": "17.2",
|
| 1033 |
+
"marginal_note": "",
|
| 1034 |
+
"part": "",
|
| 1035 |
+
"division": "",
|
| 1036 |
+
"heading": "Freight Forwarder",
|
| 1037 |
+
"history": "SOR/2015-90, s. 33",
|
| 1038 |
+
"last_amended": "2015-10-24",
|
| 1039 |
+
"in_force": "2015-10-24",
|
| 1040 |
+
"status": "in force",
|
| 1041 |
+
"current_to": "2019-06-21",
|
| 1042 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-17.2.html",
|
| 1043 |
+
"id": "SOR-86-873-s17.2",
|
| 1044 |
+
"text": "17.2 The freight forwarder shall give the Agency the information no later than four hours before the aircraft is scheduled to arrive at its airport of arrival or, if the duration of the flight to Canada is less than four hours, no later than the aircraft’s time of departure.",
|
| 1045 |
+
"citation": "Reporting of Imported Goods Regs, s. 17.2"
|
| 1046 |
+
},
|
| 1047 |
+
{
|
| 1048 |
+
"act_code": "SOR-86-873",
|
| 1049 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 1050 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 1051 |
+
"section": "18",
|
| 1052 |
+
"marginal_note": "",
|
| 1053 |
+
"part": "",
|
| 1054 |
+
"division": "",
|
| 1055 |
+
"heading": "Carrier",
|
| 1056 |
+
"history": "SOR/2015-90, s. 8",
|
| 1057 |
+
"last_amended": "2015-05-06",
|
| 1058 |
+
"in_force": "2015-05-06",
|
| 1059 |
+
"status": "in force",
|
| 1060 |
+
"current_to": "2019-06-21",
|
| 1061 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-18.html",
|
| 1062 |
+
"id": "SOR-86-873-s18",
|
| 1063 |
+
"text": "18\n(1) If specified goods will be transported to Canada by a highway conveyance, the carrier that operates the conveyance is required under subsection 12.1(1) of the Act to give the Agency\n(a) the information set out in Part 3 of Schedule 1; and\n(b) for each shipment for which the carrier is responsible, the information set out in Part 3 of Schedule 2.\n(2) Despite subsection (1), the carrier is not required to give the information if\n(a) the conveyance will arrive in Canada directly from the United States or Mexico;\n(b) every importer of the specified goods is a CSA importer;\n(c) the carrier is a CSA carrier and the person in charge of the conveyance is a commercial driver who holds an authorization under section 6.2 or 6.21 of the Presentation of Persons (2003) Regulations;\n(d) every importer of the specified goods has given written instructions to the carrier to submit a request to the Agency for the release of those goods under paragraph 32(2)(b) of the Act; and\n(e) no federal or provincial Act or regulation requires that a permit, licence or similar document be provided to the Agency before any of the specified goods are released.\n(3) Despite subsection (1), the carrier is not required to give the information set out in Part 3 of Schedule 2 for a shipment if\n(a) it consists of goods that the carrier will transport as or on behalf of a courier and those goods will be released under subsection 32(4) of the Act before the accounting required under subsection 32(1) of the Act and the payment of duties;\n(b) it consists of an empty cargo container that is not for sale;\n(c) it is listed in an air bill of lading, air waybill or similar document that is issued by a carrier and that relates to the carriage of the shipment to Canada by air but it will arrive in Canada on board the highway conveyance;\n(d) the highway conveyance that transports the shipment will travel from a place in the United States through Canada to another place in the United States and no specified good will be unloaded from the conveyance in Canada; or\n(e) the highway conveyance that transports the shipment will travel from a place in Canada through the United States to another place in Canada and no specified good will be unloaded from the conveyance in the United States.",
|
| 1064 |
+
"citation": "Reporting of Imported Goods Regs, s. 18"
|
| 1065 |
+
},
|
| 1066 |
+
{
|
| 1067 |
+
"act_code": "SOR-86-873",
|
| 1068 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 1069 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 1070 |
+
"section": "19",
|
| 1071 |
+
"marginal_note": "",
|
| 1072 |
+
"part": "",
|
| 1073 |
+
"division": "",
|
| 1074 |
+
"heading": "Carrier",
|
| 1075 |
+
"history": "SOR/2015-90, s. 8",
|
| 1076 |
+
"last_amended": "2015-05-06",
|
| 1077 |
+
"in_force": "2015-05-06",
|
| 1078 |
+
"status": "in force",
|
| 1079 |
+
"current_to": "2019-06-21",
|
| 1080 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-19.html",
|
| 1081 |
+
"id": "SOR-86-873-s19",
|
| 1082 |
+
"text": "19 The carrier shall give the Agency the information at least one hour before the highway conveyance arrives in Canada.",
|
| 1083 |
+
"citation": "Reporting of Imported Goods Regs, s. 19"
|
| 1084 |
+
},
|
| 1085 |
+
{
|
| 1086 |
+
"act_code": "SOR-86-873",
|
| 1087 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 1088 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 1089 |
+
"section": "19.1",
|
| 1090 |
+
"marginal_note": "",
|
| 1091 |
+
"part": "",
|
| 1092 |
+
"division": "",
|
| 1093 |
+
"heading": "Freight Forwarder",
|
| 1094 |
+
"history": "SOR/2015-90, s. 35",
|
| 1095 |
+
"last_amended": "2015-10-24",
|
| 1096 |
+
"in_force": "2015-10-24",
|
| 1097 |
+
"status": "in force",
|
| 1098 |
+
"current_to": "2019-06-21",
|
| 1099 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-19.1.html",
|
| 1100 |
+
"id": "SOR-86-873-s19.1",
|
| 1101 |
+
"text": "19.1 If one or more shipments for which a freight forwarder is responsible will be transported to Canada by a highway conveyance, the freight forwarder is required under subsection 12.1(1) of the Act to give the Agency, for each shipment, the information set out in Part 4 of Schedule 2.",
|
| 1102 |
+
"citation": "Reporting of Imported Goods Regs, s. 19.1"
|
| 1103 |
+
},
|
| 1104 |
+
{
|
| 1105 |
+
"act_code": "SOR-86-873",
|
| 1106 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 1107 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 1108 |
+
"section": "19.2",
|
| 1109 |
+
"marginal_note": "",
|
| 1110 |
+
"part": "",
|
| 1111 |
+
"division": "",
|
| 1112 |
+
"heading": "Freight Forwarder",
|
| 1113 |
+
"history": "SOR/2015-90, s. 35",
|
| 1114 |
+
"last_amended": "2015-10-24",
|
| 1115 |
+
"in_force": "2015-10-24",
|
| 1116 |
+
"status": "in force",
|
| 1117 |
+
"current_to": "2019-06-21",
|
| 1118 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-19.2.html",
|
| 1119 |
+
"id": "SOR-86-873-s19.2",
|
| 1120 |
+
"text": "19.2 The freight forwarder shall give the Agency the information at least one hour before the highway conveyance arrives in Canada.",
|
| 1121 |
+
"citation": "Reporting of Imported Goods Regs, s. 19.2"
|
| 1122 |
+
},
|
| 1123 |
+
{
|
| 1124 |
+
"act_code": "SOR-86-873",
|
| 1125 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 1126 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 1127 |
+
"section": "20",
|
| 1128 |
+
"marginal_note": "",
|
| 1129 |
+
"part": "",
|
| 1130 |
+
"division": "",
|
| 1131 |
+
"heading": "Carrier",
|
| 1132 |
+
"history": "SOR/2015-90, s. 8",
|
| 1133 |
+
"last_amended": "2015-05-06",
|
| 1134 |
+
"in_force": "2015-05-06",
|
| 1135 |
+
"status": "in force",
|
| 1136 |
+
"current_to": "2019-06-21",
|
| 1137 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-20.html",
|
| 1138 |
+
"id": "SOR-86-873-s20",
|
| 1139 |
+
"text": "20\n(1) If specified goods will be transported to Canada by a rail conveyance, the carrier that operates the conveyance is required under subsection 12.1(1) of the Act to give the Agency\n(a) the information set out in Part 4 of Schedule 1; and\n(b) for each shipment for which the carrier is responsible, the information set out in Part 3 of Schedule 2.\n(2) Despite subsection (1), the carrier is not required to give the information if\n(a) the conveyance will arrive in Canada directly from the United States or Mexico;\n(b) every importer of the specified goods is a CSA importer;\n(c) the carrier is a CSA carrier;\n(d) every importer of the specified goods has given written instructions to the carrier to submit a request to the Agency for the release of those goods under paragraph 32(2)(b) of the Act; and\n(e) no federal or provincial Act or regulation requires that a permit, licence or similar document be provided to the Agency before any of the specified goods are released.\n(3) Despite subsection (1), the carrier is not required to give the information set out in Part 3 of Schedule 2 for a shipment if\n(a) it consists of goods that the carrier will transport as or on behalf of a courier and those goods will be released under subsection 32(4) of the Act before the accounting required under subsection 32(1) of the Act and the payment of duties;\n(b) it consists of an empty cargo container that is not for sale;\n(c) the rail car that carries the shipment will travel from a place in the United States through Canada to another place in the United States and no specified good will be unloaded from it in Canada; or\n(d) the rail car that carries the shipment will travel from a place in Canada through the United States to another place in Canada and no specified good will be unloaded from it in the United States.",
|
| 1140 |
+
"citation": "Reporting of Imported Goods Regs, s. 20"
|
| 1141 |
+
},
|
| 1142 |
+
{
|
| 1143 |
+
"act_code": "SOR-86-873",
|
| 1144 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 1145 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 1146 |
+
"section": "21",
|
| 1147 |
+
"marginal_note": "",
|
| 1148 |
+
"part": "",
|
| 1149 |
+
"division": "",
|
| 1150 |
+
"heading": "Carrier",
|
| 1151 |
+
"history": "SOR/2015-90, s. 8",
|
| 1152 |
+
"last_amended": "2015-05-06",
|
| 1153 |
+
"in_force": "2015-05-06",
|
| 1154 |
+
"status": "in force",
|
| 1155 |
+
"current_to": "2019-06-21",
|
| 1156 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-21.html",
|
| 1157 |
+
"id": "SOR-86-873-s21",
|
| 1158 |
+
"text": "21 The carrier shall give the Agency the information at least two hours before the rail conveyance arrives in Canada.",
|
| 1159 |
+
"citation": "Reporting of Imported Goods Regs, s. 21"
|
| 1160 |
+
},
|
| 1161 |
+
{
|
| 1162 |
+
"act_code": "SOR-86-873",
|
| 1163 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 1164 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 1165 |
+
"section": "21.1",
|
| 1166 |
+
"marginal_note": "",
|
| 1167 |
+
"part": "",
|
| 1168 |
+
"division": "",
|
| 1169 |
+
"heading": "Freight Forwarder",
|
| 1170 |
+
"history": "SOR/2015-90, s. 37",
|
| 1171 |
+
"last_amended": "2015-10-24",
|
| 1172 |
+
"in_force": "2015-10-24",
|
| 1173 |
+
"status": "in force",
|
| 1174 |
+
"current_to": "2019-06-21",
|
| 1175 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-21.1.html",
|
| 1176 |
+
"id": "SOR-86-873-s21.1",
|
| 1177 |
+
"text": "21.1 If one or more shipments for which a freight forwarder is responsible will be transported to Canada by a rail conveyance, the freight forwarder is required under subsection 12.1(1) of the Act to give the Agency, for each shipment, the information set out in Part 4 of Schedule 2.",
|
| 1178 |
+
"citation": "Reporting of Imported Goods Regs, s. 21.1"
|
| 1179 |
+
},
|
| 1180 |
+
{
|
| 1181 |
+
"act_code": "SOR-86-873",
|
| 1182 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 1183 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 1184 |
+
"section": "21.2",
|
| 1185 |
+
"marginal_note": "",
|
| 1186 |
+
"part": "",
|
| 1187 |
+
"division": "",
|
| 1188 |
+
"heading": "Freight Forwarder",
|
| 1189 |
+
"history": "SOR/2015-90, s. 37",
|
| 1190 |
+
"last_amended": "2015-10-24",
|
| 1191 |
+
"in_force": "2015-10-24",
|
| 1192 |
+
"status": "in force",
|
| 1193 |
+
"current_to": "2019-06-21",
|
| 1194 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-21.2.html",
|
| 1195 |
+
"id": "SOR-86-873-s21.2",
|
| 1196 |
+
"text": "21.2 The freight forwarder shall give the Agency the information at least two hours before the rail conveyance arrives in Canada.",
|
| 1197 |
+
"citation": "Reporting of Imported Goods Regs, s. 21.2"
|
| 1198 |
+
},
|
| 1199 |
+
{
|
| 1200 |
+
"act_code": "SOR-86-873",
|
| 1201 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 1202 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 1203 |
+
"section": "22",
|
| 1204 |
+
"marginal_note": "",
|
| 1205 |
+
"part": "",
|
| 1206 |
+
"division": "",
|
| 1207 |
+
"heading": "Information Required — Other Circumstances",
|
| 1208 |
+
"history": "SOR/2015-90, s. 8",
|
| 1209 |
+
"last_amended": "2015-05-06",
|
| 1210 |
+
"in_force": "2015-05-06",
|
| 1211 |
+
"status": "in force",
|
| 1212 |
+
"current_to": "2019-06-21",
|
| 1213 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-22.html",
|
| 1214 |
+
"id": "SOR-86-873-s22",
|
| 1215 |
+
"text": "22\n(1) If a marine pleasure craft will arrive in Canada with no specified goods on board and the person in charge of the marine pleasure craft is authorized to present themselves in the alternative manner described in paragraph 11(e) of the Presentation of Persons (2003) Regulations, that person is required under subsection 12.1(1) of the Act to give the Agency the time and place at which the marine pleasure craft is scheduled to land following arrival in Canada and a description of all of the goods carried on board, including their value and quantity.\n(2) The person in charge of the marine pleasure craft shall give the information by telephone to an officer at a designated customs office at least 30 minutes but no more than four hours before the marine pleasure craft arrives in Canada.\n(3) The person in charge of the marine pleasure craft shall, before it arrives in Canada, notify an officer at a designated customs office by telephone of any change to the information given unless there are emergency circumstances, in which case they shall notify an officer at a designated customs office of the change, and explain the circumstances, by telephone when the marine pleasure craft arrives in Canada.",
|
| 1216 |
+
"citation": "Reporting of Imported Goods Regs, s. 22"
|
| 1217 |
+
},
|
| 1218 |
+
{
|
| 1219 |
+
"act_code": "SOR-86-873",
|
| 1220 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 1221 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 1222 |
+
"section": "23",
|
| 1223 |
+
"marginal_note": "",
|
| 1224 |
+
"part": "",
|
| 1225 |
+
"division": "",
|
| 1226 |
+
"heading": "Information Required — Other Circumstances",
|
| 1227 |
+
"history": "SOR/2015-90, s. 8",
|
| 1228 |
+
"last_amended": "2015-05-06",
|
| 1229 |
+
"in_force": "2015-05-06",
|
| 1230 |
+
"status": "in force",
|
| 1231 |
+
"current_to": "2019-06-21",
|
| 1232 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-23.html",
|
| 1233 |
+
"id": "SOR-86-873-s23",
|
| 1234 |
+
"text": "23\n(1) If a corporate aircraft or private aircraft will arrive in Canada with no specified goods on board and the person in charge of the aircraft is authorized to present themselves in an alternative manner described in paragraph 11(b) or (c) of the Presentation of Persons (2003) Regulations, that person is required under subsection 12.1(1) of the Act to give the Agency the time and place at which the aircraft is scheduled to land following arrival in Canada and a description of all of the goods carried on board, including their value and quantity.\n(2) The person in charge of the aircraft shall give the information by telephone to an officer at a designated customs office at least two but no more than 48 hours before the aircraft arrives in Canada.\n(3) The person in charge of the aircraft shall, before it arrives in Canada, notify an officer at a designated customs office by telephone of any change to the information given unless there are emergency circumstances, in which case they shall notify an officer at a designated customs office of the change, and explain the circumstances, by telephone when the aircraft arrives in Canada.",
|
| 1235 |
+
"citation": "Reporting of Imported Goods Regs, s. 23"
|
| 1236 |
+
},
|
| 1237 |
+
{
|
| 1238 |
+
"act_code": "SOR-86-873",
|
| 1239 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 1240 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 1241 |
+
"section": "24",
|
| 1242 |
+
"marginal_note": "",
|
| 1243 |
+
"part": "",
|
| 1244 |
+
"division": "",
|
| 1245 |
+
"heading": "Information Required — Other Circumstances",
|
| 1246 |
+
"history": "SOR/2015-90, s. 8",
|
| 1247 |
+
"last_amended": "2015-05-06",
|
| 1248 |
+
"in_force": "2015-05-06",
|
| 1249 |
+
"status": "in force",
|
| 1250 |
+
"current_to": "2019-06-21",
|
| 1251 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-24.html",
|
| 1252 |
+
"id": "SOR-86-873-s24",
|
| 1253 |
+
"text": "24\n(1) If a highway conveyance that is ordinarily used to transport specified goods to or from Canada will arrive in Canada with no specified goods on board, the carrier that operates the conveyance is required under subsection 12.1(1) of the Act to give the Agency the information set out in Part 3 of Schedule 1.\n(2) Despite subsection (1), the carrier is not required to give the information if\n(a) the conveyance is a tractor that is not towing a trailer; or\n(b) the carrier is a CSA carrier and the person in charge of the conveyance is a commercial driver who holds an authorization under section 6.2 or 6.21 of the Presentation of Persons (2003) Regulations.\n(3) The carrier shall give the information at least one hour before the highway conveyance arrives in Canada.",
|
| 1254 |
+
"citation": "Reporting of Imported Goods Regs, s. 24"
|
| 1255 |
+
},
|
| 1256 |
+
{
|
| 1257 |
+
"act_code": "SOR-86-873",
|
| 1258 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 1259 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 1260 |
+
"section": "25",
|
| 1261 |
+
"marginal_note": "",
|
| 1262 |
+
"part": "",
|
| 1263 |
+
"division": "",
|
| 1264 |
+
"heading": "Information Required — Other Circumstances",
|
| 1265 |
+
"history": "SOR/2015-90, s. 8",
|
| 1266 |
+
"last_amended": "2015-05-06",
|
| 1267 |
+
"in_force": "2015-05-06",
|
| 1268 |
+
"status": "in force",
|
| 1269 |
+
"current_to": "2019-06-21",
|
| 1270 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-25.html",
|
| 1271 |
+
"id": "SOR-86-873-s25",
|
| 1272 |
+
"text": "25\n(1) If a rail conveyance that is ordinarily used to transport specified goods to or from Canada will arrive in Canada with no specified goods on board and either with no rail car or with all of its rail cars empty, the carrier that operates the conveyance is required under subsection 12.1(1) of the Act to give the Agency the information set out in Part 4 of Schedule 1.\n(2) The carrier shall give the information at least two hours before the rail conveyance arrives in Canada.",
|
| 1273 |
+
"citation": "Reporting of Imported Goods Regs, s. 25"
|
| 1274 |
+
},
|
| 1275 |
+
{
|
| 1276 |
+
"act_code": "SOR-86-873",
|
| 1277 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 1278 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 1279 |
+
"section": "26",
|
| 1280 |
+
"marginal_note": "",
|
| 1281 |
+
"part": "",
|
| 1282 |
+
"division": "",
|
| 1283 |
+
"heading": "Information Required — Other Circumstances",
|
| 1284 |
+
"history": "SOR/2015-90, s. 8",
|
| 1285 |
+
"last_amended": "2015-05-06",
|
| 1286 |
+
"in_force": "2015-05-06",
|
| 1287 |
+
"status": "in force",
|
| 1288 |
+
"current_to": "2019-06-21",
|
| 1289 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-26.html",
|
| 1290 |
+
"id": "SOR-86-873-s26",
|
| 1291 |
+
"text": "26\n(1) If a rail conveyance that is ordinarily used to transport specified goods to or from Canada will arrive in Canada, a crew member on board the conveyance who will have goods in their actual possession or that form part of their baggage on arrival in Canada is required under subsection 12.1(1) of the Act to give the Agency the time and place at which the conveyance is scheduled to arrive in Canada.\n(2) The crew member shall give the information by radio or telephone to the chief officer of customs at the place at which the rail conveyance is scheduled to arrive in Canada at least two hours before it arrives.",
|
| 1292 |
+
"citation": "Reporting of Imported Goods Regs, s. 26"
|
| 1293 |
+
},
|
| 1294 |
+
{
|
| 1295 |
+
"act_code": "SOR-86-873",
|
| 1296 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 1297 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 1298 |
+
"section": "27",
|
| 1299 |
+
"marginal_note": "",
|
| 1300 |
+
"part": "",
|
| 1301 |
+
"division": "",
|
| 1302 |
+
"heading": "Information Required — Other Circumstances",
|
| 1303 |
+
"history": "SOR/2015-90, s. 8",
|
| 1304 |
+
"last_amended": "2015-05-06",
|
| 1305 |
+
"in_force": "2015-05-06",
|
| 1306 |
+
"status": "in force",
|
| 1307 |
+
"current_to": "2019-06-21",
|
| 1308 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-27.html",
|
| 1309 |
+
"id": "SOR-86-873-s27",
|
| 1310 |
+
"text": "27\n(1) If a vessel, aircraft or rail conveyance is or will be used to transport 30 or more persons to Canada other than on a regular schedule or predetermined charter schedule, the carrier that operates the conveyance is required under subsection 12.1(1) of the Act to give the Agency the following information:\n(a) in the case of a vessel, the time and place at which it is scheduled to land following arrival in Canada;\n(b) in the case of an aircraft, the time and place at which it is scheduled to land following arrival in Canada; and\n(c) in the case of a rail conveyance, the time and place at which it is scheduled to arrive in Canada.\n(2) Despite paragraphs (1)(a) and (b), the carrier is not required to give the information when the person in charge of the conveyance is required to give it in the circumstances set out in subsection 22(1) or 23(1).\n(3) The carrier shall give the information in writing to the chief officer of customs at the place referred to in paragraph (1)(a), (b) or (c), as the case may be, at least 72 hours before the conveyance arrives in Canada.",
|
| 1311 |
+
"citation": "Reporting of Imported Goods Regs, s. 27"
|
| 1312 |
+
},
|
| 1313 |
+
{
|
| 1314 |
+
"act_code": "SOR-86-873",
|
| 1315 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 1316 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 1317 |
+
"section": "28",
|
| 1318 |
+
"marginal_note": "",
|
| 1319 |
+
"part": "",
|
| 1320 |
+
"division": "",
|
| 1321 |
+
"heading": "General Provision Regarding Time for Giving Information Before Arrival",
|
| 1322 |
+
"history": "SOR/2015-90, s. 8",
|
| 1323 |
+
"last_amended": "2015-05-06",
|
| 1324 |
+
"in_force": "2015-05-06",
|
| 1325 |
+
"status": "in force",
|
| 1326 |
+
"current_to": "2019-06-21",
|
| 1327 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-28.html",
|
| 1328 |
+
"id": "SOR-86-873-s28",
|
| 1329 |
+
"text": "28 For greater certainty, nothing in any of sections 13 to 27 permits a person to give information to the Agency under subsection 12.1(1) of the Act on or after the arrival of the conveyance in Canada.",
|
| 1330 |
+
"citation": "Reporting of Imported Goods Regs, s. 28"
|
| 1331 |
+
},
|
| 1332 |
+
{
|
| 1333 |
+
"act_code": "SOR-86-873",
|
| 1334 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 1335 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 1336 |
+
"section": "29",
|
| 1337 |
+
"marginal_note": "",
|
| 1338 |
+
"part": "",
|
| 1339 |
+
"division": "",
|
| 1340 |
+
"heading": "Manner of Giving Information Before Arrival",
|
| 1341 |
+
"history": "SOR/2015-90, ss. 8, 38",
|
| 1342 |
+
"last_amended": "2015-10-24",
|
| 1343 |
+
"in_force": "2015-10-24",
|
| 1344 |
+
"status": "in force",
|
| 1345 |
+
"current_to": "2019-06-21",
|
| 1346 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-29.html",
|
| 1347 |
+
"id": "SOR-86-873-s29",
|
| 1348 |
+
"text": "29 A person that is required to give information to the Agency under subsection 12.1(1) of the Act in the circumstances set out in section 13, 15.2, 16, 17.1, 18, 19.1, 20, 21.1, 24 or 25 shall give the Agency the information by electronic means in accordance with the technical requirements, specifications and procedures that are set out in the Electronic Commerce Client Requirements Document.",
|
| 1349 |
+
"citation": "Reporting of Imported Goods Regs, s. 29"
|
| 1350 |
+
},
|
| 1351 |
+
{
|
| 1352 |
+
"act_code": "SOR-86-873",
|
| 1353 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 1354 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 1355 |
+
"section": "30",
|
| 1356 |
+
"marginal_note": "",
|
| 1357 |
+
"part": "",
|
| 1358 |
+
"division": "",
|
| 1359 |
+
"heading": "Corrections",
|
| 1360 |
+
"history": "SOR/2015-90, ss. 8, 39",
|
| 1361 |
+
"last_amended": "2015-10-24",
|
| 1362 |
+
"in_force": "2015-10-24",
|
| 1363 |
+
"status": "in force",
|
| 1364 |
+
"current_to": "2019-06-21",
|
| 1365 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-30.html",
|
| 1366 |
+
"id": "SOR-86-873-s30",
|
| 1367 |
+
"text": "30 A person that gives information to the Agency under subsection 12.1(1) of the Act in the circumstances set out in section 13, 15.2, 16, 17.1, 18, 19.1, 20, 21.1, 24 or 25 shall, if they become aware that the information is inaccurate or incomplete, notify the Agency without delay by electronic means of a change to that information.",
|
| 1368 |
+
"citation": "Reporting of Imported Goods Regs, s. 30"
|
| 1369 |
+
},
|
| 1370 |
+
{
|
| 1371 |
+
"act_code": "SOR-86-873",
|
| 1372 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 1373 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 1374 |
+
"section": "31",
|
| 1375 |
+
"marginal_note": "",
|
| 1376 |
+
"part": "",
|
| 1377 |
+
"division": "",
|
| 1378 |
+
"heading": "Carrier Code",
|
| 1379 |
+
"history": "SOR/2015-90, s. 8",
|
| 1380 |
+
"last_amended": "2015-05-06",
|
| 1381 |
+
"in_force": "2015-05-06",
|
| 1382 |
+
"status": "in force",
|
| 1383 |
+
"current_to": "2019-06-21",
|
| 1384 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-31.html",
|
| 1385 |
+
"id": "SOR-86-873-s31",
|
| 1386 |
+
"text": "31 The requirements and conditions that are to be met before the Minister may issue a carrier code are the following:\n(a) if the application is for a carrier code that would be held by the applicant as a carrier in connection with a mode of conveyance,\n(i) the applicant does not already hold a carrier code as a carrier in connection with that mode of conveyance,\n(ii) if a carrier code previously held by the applicant as a carrier in connection with that mode of conveyance was cancelled, the matter that gave rise to the cancellation has been corrected, and\n(iii) the applicant expects to operate at least one conveyance of that mode that would ordinarily be used to transport specified goods to or from Canada; and\n(b) if the application is for a carrier code that would be held by the applicant as a freight forwarder,\n(i) the applicant does not already hold a carrier code as a freight forwarder,\n(ii) if a carrier code previously held by the applicant as a freight forwarder was cancelled, the matter that gave rise to the cancellation has been corrected, and\n(iii) the applicant expects to cause specified goods to be transported to Canada.",
|
| 1387 |
+
"citation": "Reporting of Imported Goods Regs, s. 31"
|
| 1388 |
+
},
|
| 1389 |
+
{
|
| 1390 |
+
"act_code": "SOR-86-873",
|
| 1391 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 1392 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 1393 |
+
"section": "32",
|
| 1394 |
+
"marginal_note": "",
|
| 1395 |
+
"part": "",
|
| 1396 |
+
"division": "",
|
| 1397 |
+
"heading": "Carrier Code",
|
| 1398 |
+
"history": "SOR/2015-90, s. 8",
|
| 1399 |
+
"last_amended": "2015-05-06",
|
| 1400 |
+
"in_force": "2015-05-06",
|
| 1401 |
+
"status": "in force",
|
| 1402 |
+
"current_to": "2019-06-21",
|
| 1403 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-32.html",
|
| 1404 |
+
"id": "SOR-86-873-s32",
|
| 1405 |
+
"text": "32 A person that holds a carrier code shall notify the Agency without delay of\n(a) a change to the information that is given in the application for the carrier code;\n(b) a merger or amalgamation with another person that holds a carrier code; or\n(c) the cessation of a business activity to which the carrier code relates.",
|
| 1406 |
+
"citation": "Reporting of Imported Goods Regs, s. 32"
|
| 1407 |
+
},
|
| 1408 |
+
{
|
| 1409 |
+
"act_code": "SOR-86-873",
|
| 1410 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 1411 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 1412 |
+
"section": "33",
|
| 1413 |
+
"marginal_note": "",
|
| 1414 |
+
"part": "",
|
| 1415 |
+
"division": "",
|
| 1416 |
+
"heading": "Carrier Code",
|
| 1417 |
+
"history": "SOR/2015-90, s. 8",
|
| 1418 |
+
"last_amended": "2015-05-06",
|
| 1419 |
+
"in_force": "2015-05-06",
|
| 1420 |
+
"status": "in force",
|
| 1421 |
+
"current_to": "2019-06-21",
|
| 1422 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-33.html",
|
| 1423 |
+
"id": "SOR-86-873-s33",
|
| 1424 |
+
"text": "33\n(1) The circumstances in which the Minister may suspend a carrier code held by a person are the following:\n(a) the person contravenes\n(i) a provision of a federal Act or regulation if the provision relates to the importation or exportation of goods,\n(ii) the Immigration and Refugee Protection Act or a regulation made under it, or\n(iii) the Proceeds of Crime (Money Laundering) and Terrorist Financing Act or a regulation made under it;\n(b) the person fails to pay an amount that is payable under the Act; or\n(c) the person provided false or misleading information in the application for the carrier code.\n(2) The Minister shall notify the person that holds the carrier code without delay and in writing of the suspension of the carrier code, the period during which the suspension applies and the reasons for the suspension.\n(3) The person may make representations to the Minister within the period of suspension as to why the carrier code should be reinstated.\n(4) The Minister may reinstate a carrier code that is suspended under subsection 12.1(5) of the Act only if the matter that gave rise to the suspension has been corrected during the period of suspension.",
|
| 1425 |
+
"citation": "Reporting of Imported Goods Regs, s. 33"
|
| 1426 |
+
},
|
| 1427 |
+
{
|
| 1428 |
+
"act_code": "SOR-86-873",
|
| 1429 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 1430 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 1431 |
+
"section": "34",
|
| 1432 |
+
"marginal_note": "",
|
| 1433 |
+
"part": "",
|
| 1434 |
+
"division": "",
|
| 1435 |
+
"heading": "Carrier Code",
|
| 1436 |
+
"history": "SOR/2015-90, s. 8",
|
| 1437 |
+
"last_amended": "2015-05-06",
|
| 1438 |
+
"in_force": "2015-05-06",
|
| 1439 |
+
"status": "in force",
|
| 1440 |
+
"current_to": "2019-06-21",
|
| 1441 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-34.html",
|
| 1442 |
+
"id": "SOR-86-873-s34",
|
| 1443 |
+
"text": "34\n(1) The circumstances in which the Minister may cancel a carrier code held by a person are the following:\n(a) the matter that gave rise to a suspension has not been corrected within the period of suspension;\n(b) the person has ceased all business activities to which the carrier code relates;\n(c) the person holds more than one carrier code as a carrier in connection with a particular mode of conveyance;\n(d) the person holds more than one carrier code as a freight forwarder;\n(e) the carrier code was issued before the coming into force of subsection 12.1(4) of the Act and the person holds it in a capacity other than that of a carrier or a freight forwarder, such as an agent or a person in charge of a conveyance; or\n(f) the person requests the cancellation.\n(2) Before cancelling a carrier code, the Minister shall send written notice of the proposed cancellation and the reasons for it to the last known address of the person that holds the carrier code and, unless the carrier code is being cancelled in the circumstances set out in paragraph (1)(e) or (f), shall give the person the opportunity to make representations in writing as to why the carrier code should not be cancelled.\n(3) The cancellation of a carrier code is not effective until the earlier of\n(a) 30 days after the day on which the person that holds the carrier code receives the notice, and\n(b) 45 days after the day on which the notice is sent.",
|
| 1444 |
+
"citation": "Reporting of Imported Goods Regs, s. 34"
|
| 1445 |
+
},
|
| 1446 |
+
{
|
| 1447 |
+
"act_code": "SOR-86-873",
|
| 1448 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 1449 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 1450 |
+
"section": "35",
|
| 1451 |
+
"marginal_note": "",
|
| 1452 |
+
"part": "",
|
| 1453 |
+
"division": "",
|
| 1454 |
+
"heading": "Carrier Code",
|
| 1455 |
+
"history": "SOR/2015-90, s. 8",
|
| 1456 |
+
"last_amended": "2015-05-06",
|
| 1457 |
+
"in_force": "2015-05-06",
|
| 1458 |
+
"status": "in force",
|
| 1459 |
+
"current_to": "2019-06-21",
|
| 1460 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-35.html",
|
| 1461 |
+
"id": "SOR-86-873-s35",
|
| 1462 |
+
"text": "35 The following persons are exempted from holding a valid carrier code:\n(a) a person in charge of a marine pleasure craft in the circumstances set out either in subsection 22(1) or in subsection 17(1) of the Presentation of Persons (2003) Regulations;\n(b) a person in charge of a corporate aircraft or private aircraft in the circumstances set out either in subsection 23(1) or in subsection 15(1) of the Presentation of Persons (2003) Regulations;\n(c) a crew member of a rail conveyance that is ordinarily used to transport specified goods to or from Canada in the circumstances set out in subsection 26(1);\n(d) a carrier that operates a vessel, aircraft or rail conveyance in the circumstances set out in subsection 27(1); and\n(e) a person in charge of a non-commercial passenger conveyance in the circumstances set out in subsection 4(1) of the Presentation of Persons (2003) Regulations.",
|
| 1463 |
+
"citation": "Reporting of Imported Goods Regs, s. 35"
|
| 1464 |
+
},
|
| 1465 |
+
{
|
| 1466 |
+
"act_code": "SOR-86-873",
|
| 1467 |
+
"act_short": "Reporting of Imported Goods Regs",
|
| 1468 |
+
"act_name": "Reporting of Imported Goods Regulations",
|
| 1469 |
+
"section": "36",
|
| 1470 |
+
"marginal_note": "",
|
| 1471 |
+
"part": "",
|
| 1472 |
+
"division": "",
|
| 1473 |
+
"heading": "Liability for Duties on Goods Reported",
|
| 1474 |
+
"history": "SOR/2015-90, s. 9",
|
| 1475 |
+
"last_amended": "2015-05-06",
|
| 1476 |
+
"in_force": "2015-05-06",
|
| 1477 |
+
"status": "in force",
|
| 1478 |
+
"current_to": "2019-06-21",
|
| 1479 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-86-873/section-36.html",
|
| 1480 |
+
"id": "SOR-86-873-s36",
|
| 1481 |
+
"text": "36 For the purposes of subsection 18(2) of the Act, proof that duties have been paid or of any of the events described in paragraphs (a) to (f) thereof shall be given in writing to an officer within 70 days after the date on which the duties are claimed to have been paid or the events are claimed to have happened.",
|
| 1482 |
+
"citation": "Reporting of Imported Goods Regs, s. 36"
|
| 1483 |
+
}
|
| 1484 |
+
]
|
|
@@ -0,0 +1,534 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"act_code": "SOR-96-263",
|
| 4 |
+
"act_short": "WAPTR",
|
| 5 |
+
"act_name": "Wild Animal and Plant Trade Regulations",
|
| 6 |
+
"section": "1",
|
| 7 |
+
"marginal_note": "",
|
| 8 |
+
"part": "",
|
| 9 |
+
"division": "",
|
| 10 |
+
"heading": "",
|
| 11 |
+
"history": "",
|
| 12 |
+
"last_amended": "2017-06-09",
|
| 13 |
+
"in_force": "2017-06-09",
|
| 14 |
+
"status": "repealed",
|
| 15 |
+
"current_to": "2025-09-15",
|
| 16 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-96-263/section-1.html",
|
| 17 |
+
"id": "SOR-96-263-s1",
|
| 18 |
+
"text": "1 [Repealed, SOR/2017-123, s. 2]",
|
| 19 |
+
"citation": "WAPTR, s. 1"
|
| 20 |
+
},
|
| 21 |
+
{
|
| 22 |
+
"act_code": "SOR-96-263",
|
| 23 |
+
"act_short": "WAPTR",
|
| 24 |
+
"act_name": "Wild Animal and Plant Trade Regulations",
|
| 25 |
+
"section": "2",
|
| 26 |
+
"marginal_note": "",
|
| 27 |
+
"part": "",
|
| 28 |
+
"division": "",
|
| 29 |
+
"heading": "Interpretation",
|
| 30 |
+
"history": "SOR/2017-123, s. 3",
|
| 31 |
+
"last_amended": "2017-06-09",
|
| 32 |
+
"in_force": "2017-06-09",
|
| 33 |
+
"status": "in force",
|
| 34 |
+
"current_to": "2025-09-15",
|
| 35 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-96-263/section-2.html",
|
| 36 |
+
"id": "SOR-96-263-s2",
|
| 37 |
+
"text": "2 In these Regulations,\nAct means the Wild Animal and Plant Protection and Regulation of International and Interprovincial Trade Act; (Loi)\nartificially propagated[Repealed, SOR/2017-123, s. 3]\nbred in captivity means\n(a) in the case of sexual reproduction, born or otherwise produced in a controlled environment of parents that mated or whose gametes were otherwise transmitted under controlled conditions, and\n(b) in the case of asexual reproduction, produced or developed under controlled conditions; (élevé en captivité)\ncompetent authority means the authority, body or person in a country or province who is legally competent to authorize the export from that country, or the transportation out of or into that province, of an animal or plant or any part or derivative of an animal or plant. (autorité compétente)",
|
| 38 |
+
"citation": "WAPTR, s. 2"
|
| 39 |
+
},
|
| 40 |
+
{
|
| 41 |
+
"act_code": "SOR-96-263",
|
| 42 |
+
"act_short": "WAPTR",
|
| 43 |
+
"act_name": "Wild Animal and Plant Trade Regulations",
|
| 44 |
+
"section": "3",
|
| 45 |
+
"marginal_note": "",
|
| 46 |
+
"part": "",
|
| 47 |
+
"division": "",
|
| 48 |
+
"heading": "Fauna and Flora Listed in an Appendix to the Convention",
|
| 49 |
+
"history": "",
|
| 50 |
+
"last_amended": "2006-03-22",
|
| 51 |
+
"in_force": "2006-03-22",
|
| 52 |
+
"status": "in force",
|
| 53 |
+
"current_to": "2025-09-15",
|
| 54 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-96-263/section-3.html",
|
| 55 |
+
"id": "SOR-96-263-s3",
|
| 56 |
+
"text": "3\n(1) The animals listed in column I of an item of Part I of Schedule I are listed as “fauna” in the appendix to the Convention specified in column II of that item.\n(2) The plants listed in column I of an item of Part II of Schedule I are listed as “flora” in the appendix to the Convention specified in column II of that item.",
|
| 57 |
+
"citation": "WAPTR, s. 3"
|
| 58 |
+
},
|
| 59 |
+
{
|
| 60 |
+
"act_code": "SOR-96-263",
|
| 61 |
+
"act_short": "WAPTR",
|
| 62 |
+
"act_name": "Wild Animal and Plant Trade Regulations",
|
| 63 |
+
"section": "4",
|
| 64 |
+
"marginal_note": "",
|
| 65 |
+
"part": "",
|
| 66 |
+
"division": "",
|
| 67 |
+
"heading": "Importation into Canada",
|
| 68 |
+
"history": "",
|
| 69 |
+
"last_amended": "2006-03-22",
|
| 70 |
+
"in_force": "2006-03-22",
|
| 71 |
+
"status": "in force",
|
| 72 |
+
"current_to": "2025-09-15",
|
| 73 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-96-263/section-4.html",
|
| 74 |
+
"id": "SOR-96-263-s4",
|
| 75 |
+
"text": "4 For the purposes of subsection 6(1) of the Act,\n(a) animal means any specimen, whether living or dead, of any wild species of the animal kingdom (kingdom Animalia), and includes any egg, sperm, tissue culture or embryo of any such animal; and\n(b) plant means any specimen, whether living or dead, of any wild species of the plant kingdom (kingdom Plantae), and includes any seed, spore, pollen or tissue culture of any such plant.",
|
| 76 |
+
"citation": "WAPTR, s. 4"
|
| 77 |
+
},
|
| 78 |
+
{
|
| 79 |
+
"act_code": "SOR-96-263",
|
| 80 |
+
"act_short": "WAPTR",
|
| 81 |
+
"act_name": "Wild Animal and Plant Trade Regulations",
|
| 82 |
+
"section": "5",
|
| 83 |
+
"marginal_note": "",
|
| 84 |
+
"part": "",
|
| 85 |
+
"division": "",
|
| 86 |
+
"heading": "Importation into Canada",
|
| 87 |
+
"history": "SOR/2017-86, s. 1",
|
| 88 |
+
"last_amended": "2018-05-12",
|
| 89 |
+
"in_force": "2018-05-12",
|
| 90 |
+
"status": "in force",
|
| 91 |
+
"current_to": "2025-09-15",
|
| 92 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-96-263/section-5.html",
|
| 93 |
+
"id": "SOR-96-263-s5",
|
| 94 |
+
"text": "5 For the purposes of subsection 6(2) of the Act and in respect of importation,\n(a) animal means any specimen, whether living or dead, of any species of animal listed as “fauna” in an appendix to the Convention or listed in Schedule II, and includes any egg, sperm, tissue culture or embryo of any such animal; and\n(b) plant means any specimen, whether living or dead, of any species of plant listed as “flora” in an appendix to the Convention, and includes any seed, spore, pollen or tissue culture of any such plant.",
|
| 95 |
+
"citation": "WAPTR, s. 5"
|
| 96 |
+
},
|
| 97 |
+
{
|
| 98 |
+
"act_code": "SOR-96-263",
|
| 99 |
+
"act_short": "WAPTR",
|
| 100 |
+
"act_name": "Wild Animal and Plant Trade Regulations",
|
| 101 |
+
"section": "5.1",
|
| 102 |
+
"marginal_note": "",
|
| 103 |
+
"part": "",
|
| 104 |
+
"division": "",
|
| 105 |
+
"heading": "Importation into Canada",
|
| 106 |
+
"history": "",
|
| 107 |
+
"last_amended": "2018-05-12",
|
| 108 |
+
"in_force": "2018-05-12",
|
| 109 |
+
"status": "repealed",
|
| 110 |
+
"current_to": "2025-09-15",
|
| 111 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-96-263/section-5.1.html",
|
| 112 |
+
"id": "SOR-96-263-s5.1",
|
| 113 |
+
"text": "5.1 [Repealed, SOR/2017-86, s. 2]",
|
| 114 |
+
"citation": "WAPTR, s. 5.1"
|
| 115 |
+
},
|
| 116 |
+
{
|
| 117 |
+
"act_code": "SOR-96-263",
|
| 118 |
+
"act_short": "WAPTR",
|
| 119 |
+
"act_name": "Wild Animal and Plant Trade Regulations",
|
| 120 |
+
"section": "6",
|
| 121 |
+
"marginal_note": "",
|
| 122 |
+
"part": "",
|
| 123 |
+
"division": "",
|
| 124 |
+
"heading": "Importation into Canada",
|
| 125 |
+
"history": "",
|
| 126 |
+
"last_amended": "2006-03-22",
|
| 127 |
+
"in_force": "2006-03-22",
|
| 128 |
+
"status": "in force",
|
| 129 |
+
"current_to": "2025-09-15",
|
| 130 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-96-263/section-6.html",
|
| 131 |
+
"id": "SOR-96-263-s6",
|
| 132 |
+
"text": "6\n(1) A person who imports into Canada an animal or plant that is listed as “fauna” or “flora” in Appendix II to the Convention but is not listed in Schedule II, or any part or derivative of any such animal or plant, is exempted from holding a permit issued under subsection 10(1) of the Act where the person has obtained, before import, a permit, certificate or written authorization that satisfies the requirements of the Convention and is granted by a competent authority in the country of export.\n(2) Subject to subsection (3), a person who imports into Canada an animal or plant that is listed as “fauna” or “flora” in Appendix III to the Convention but is not listed in Schedule II, or any part or derivative of any such animal or plant, is exempted from holding a permit issued under subsection 10(1) of the Act where the person has obtained, before import, a certificate that satisfies the requirements of the Convention and is granted by a competent authority in the country of export.\n(3) Where a person imports into Canada an animal or plant referred to in subsection (2) and listed in a subitem of column I of Schedule I, or any part or derivative of any such animal or plant, from a country of export listed in column III of that subitem, the person is exempted from holding a permit issued under subsection 10(1) of the Act where the person has obtained, before import, a permit or certificate that satisfies the requirements of the Convention and is granted by a competent authority in that country.",
|
| 133 |
+
"citation": "WAPTR, s. 6"
|
| 134 |
+
},
|
| 135 |
+
{
|
| 136 |
+
"act_code": "SOR-96-263",
|
| 137 |
+
"act_short": "WAPTR",
|
| 138 |
+
"act_name": "Wild Animal and Plant Trade Regulations",
|
| 139 |
+
"section": "7",
|
| 140 |
+
"marginal_note": "",
|
| 141 |
+
"part": "",
|
| 142 |
+
"division": "",
|
| 143 |
+
"heading": "Exportation from Canada",
|
| 144 |
+
"history": "",
|
| 145 |
+
"last_amended": "2006-03-22",
|
| 146 |
+
"in_force": "2006-03-22",
|
| 147 |
+
"status": "in force",
|
| 148 |
+
"current_to": "2025-09-15",
|
| 149 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-96-263/section-7.html",
|
| 150 |
+
"id": "SOR-96-263-s7",
|
| 151 |
+
"text": "7 For the purposes of subsection 6(2) of the Act and in respect of exportation,\n(a) animal means any specimen, whether living or dead,\n(i) of any species of animal listed as “fauna” in an appendix to the Convention, and includes any egg, sperm, tissue culture or embryo of any such animal, and\n(ii) of any wild species of the animal kingdom (kingdom Animalia), or any egg, sperm, tissue culture or embryo of any such animal, the transportation of which out of a province is regulated or prohibited by the province; and\n(b) plant means any specimen, whether living or dead,\n(i) of any species of plant listed as “flora” in an appendix to the Convention, and includes any seed, spore, pollen or tissue culture of any such plant, and\n(ii) of any wild species of the plant kingdom (kingdom Plantae), or any seed, spore, pollen or tissue culture of any such plant, the transportation of which out of a province is regulated or prohibited by the province.",
|
| 152 |
+
"citation": "WAPTR, s. 7"
|
| 153 |
+
},
|
| 154 |
+
{
|
| 155 |
+
"act_code": "SOR-96-263",
|
| 156 |
+
"act_short": "WAPTR",
|
| 157 |
+
"act_name": "Wild Animal and Plant Trade Regulations",
|
| 158 |
+
"section": "8",
|
| 159 |
+
"marginal_note": "",
|
| 160 |
+
"part": "",
|
| 161 |
+
"division": "",
|
| 162 |
+
"heading": "Exportation from Canada",
|
| 163 |
+
"history": "",
|
| 164 |
+
"last_amended": "2006-03-22",
|
| 165 |
+
"in_force": "2006-03-22",
|
| 166 |
+
"status": "in force",
|
| 167 |
+
"current_to": "2025-09-15",
|
| 168 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-96-263/section-8.html",
|
| 169 |
+
"id": "SOR-96-263-s8",
|
| 170 |
+
"text": "8\n(1) This section applies only in respect of animals and plants that are not listed as “fauna” or “flora” in any appendix to the Convention.\n(2) A person who exports from Canada an animal or plant to which this section applies, or any part or derivative of any such animal or plant, is exempted from holding a permit issued under subsection 10(1) of the Act where the thing being exported is transported out of a province that does not prohibit such transportation and that\n(a) allows such transportation only if the person has obtained a permit or certificate issued by a competent authority in the province that authorizes such transportation; or\n(b) does not require provincial authorization for such transportation.",
|
| 171 |
+
"citation": "WAPTR, s. 8"
|
| 172 |
+
},
|
| 173 |
+
{
|
| 174 |
+
"act_code": "SOR-96-263",
|
| 175 |
+
"act_short": "WAPTR",
|
| 176 |
+
"act_name": "Wild Animal and Plant Trade Regulations",
|
| 177 |
+
"section": "9",
|
| 178 |
+
"marginal_note": "",
|
| 179 |
+
"part": "",
|
| 180 |
+
"division": "",
|
| 181 |
+
"heading": "Exportation from Canada",
|
| 182 |
+
"history": "",
|
| 183 |
+
"last_amended": "2006-03-22",
|
| 184 |
+
"in_force": "2006-03-22",
|
| 185 |
+
"status": "in force",
|
| 186 |
+
"current_to": "2025-09-15",
|
| 187 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-96-263/section-9.html",
|
| 188 |
+
"id": "SOR-96-263-s9",
|
| 189 |
+
"text": "9\n(1) Every person who exports from Canada a live animal shall, where it is shipped by air, prepare it for shipment and ship it in accordance with the IATA Live Animals Regulations, 22nd edition, published in 1995 by the International Air Transport Association, as amended from time to time.\n(2) Every person who exports from Canada a live animal or plant shall, where it is shipped by land, sea or, in the case of a live plant, air, prepare it for shipment and ship it in accordance with the Guidelines for Transport and Preparation for Shipment of Live Wild Animals and Plants, as amended from time to time, adopted in 1979 by the Conference of Parties to the Convention on International Trade in Endangered Species of Wild Fauna and Flora and published in 1980 under the sponsorship of the United Nations Environment Programme.",
|
| 190 |
+
"citation": "WAPTR, s. 9"
|
| 191 |
+
},
|
| 192 |
+
{
|
| 193 |
+
"act_code": "SOR-96-263",
|
| 194 |
+
"act_short": "WAPTR",
|
| 195 |
+
"act_name": "Wild Animal and Plant Trade Regulations",
|
| 196 |
+
"section": "10",
|
| 197 |
+
"marginal_note": "",
|
| 198 |
+
"part": "",
|
| 199 |
+
"division": "",
|
| 200 |
+
"heading": "Interprovincial Transport",
|
| 201 |
+
"history": "",
|
| 202 |
+
"last_amended": "2006-03-22",
|
| 203 |
+
"in_force": "2006-03-22",
|
| 204 |
+
"status": "in force",
|
| 205 |
+
"current_to": "2025-09-15",
|
| 206 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-96-263/section-10.html",
|
| 207 |
+
"id": "SOR-96-263-s10",
|
| 208 |
+
"text": "10 For the purposes of subsection 6(3) of the Act and in respect of a province into which an animal or plant is to be transported,\n(a) animal means any specimen, whether living or dead, of any wild species of the animal kingdom (kingdom Animalia) the transportation of which into that province is regulated or prohibited by the province, and includes any egg, sperm, tissue culture or embryo of any such animal; and\n(b) plant means any specimen, whether living or dead, of any wild species of the plant kingdom (kingdom Plantae) the transportation of which into that province is regulated or prohibited by the province, and includes any seed, spore, pollen or tissue culture of any such plant.",
|
| 209 |
+
"citation": "WAPTR, s. 10"
|
| 210 |
+
},
|
| 211 |
+
{
|
| 212 |
+
"act_code": "SOR-96-263",
|
| 213 |
+
"act_short": "WAPTR",
|
| 214 |
+
"act_name": "Wild Animal and Plant Trade Regulations",
|
| 215 |
+
"section": "11",
|
| 216 |
+
"marginal_note": "",
|
| 217 |
+
"part": "",
|
| 218 |
+
"division": "",
|
| 219 |
+
"heading": "Interprovincial Transport",
|
| 220 |
+
"history": "",
|
| 221 |
+
"last_amended": "2006-03-22",
|
| 222 |
+
"in_force": "2006-03-22",
|
| 223 |
+
"status": "in force",
|
| 224 |
+
"current_to": "2025-09-15",
|
| 225 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-96-263/section-11.html",
|
| 226 |
+
"id": "SOR-96-263-s11",
|
| 227 |
+
"text": "11 An animal or plant, or any part or derivative of an animal or plant, is exempted from the operation of subsection 6(3) of the Act where all required provincial permits have been obtained.",
|
| 228 |
+
"citation": "WAPTR, s. 11"
|
| 229 |
+
},
|
| 230 |
+
{
|
| 231 |
+
"act_code": "SOR-96-263",
|
| 232 |
+
"act_short": "WAPTR",
|
| 233 |
+
"act_name": "Wild Animal and Plant Trade Regulations",
|
| 234 |
+
"section": "12",
|
| 235 |
+
"marginal_note": "",
|
| 236 |
+
"part": "",
|
| 237 |
+
"division": "",
|
| 238 |
+
"heading": "Interprovincial Transport",
|
| 239 |
+
"history": "",
|
| 240 |
+
"last_amended": "2006-03-22",
|
| 241 |
+
"in_force": "2006-03-22",
|
| 242 |
+
"status": "in force",
|
| 243 |
+
"current_to": "2025-09-15",
|
| 244 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-96-263/section-12.html",
|
| 245 |
+
"id": "SOR-96-263-s12",
|
| 246 |
+
"text": "12 For the purposes of section 7 of the Act and in respect of a province out of which an animal or plant is to be transported,\n(a) animal means any specimen, whether living or dead, of any wild species of the animal kingdom (kingdom Animalia) the transportation of which out of that province is regulated or prohibited by the province, and includes any egg, sperm, tissue culture or embryo of any such animal; and\n(b) plant means any specimen, whether living or dead, of any wild species of the plant kingdom (kingdom Plantae) the transportation of which out of that province is regulated or prohibited by the province, and includes any seed, spore, pollen or tissue culture of any such plant.",
|
| 247 |
+
"citation": "WAPTR, s. 12"
|
| 248 |
+
},
|
| 249 |
+
{
|
| 250 |
+
"act_code": "SOR-96-263",
|
| 251 |
+
"act_short": "WAPTR",
|
| 252 |
+
"act_name": "Wild Animal and Plant Trade Regulations",
|
| 253 |
+
"section": "12.1",
|
| 254 |
+
"marginal_note": "",
|
| 255 |
+
"part": "",
|
| 256 |
+
"division": "",
|
| 257 |
+
"heading": "Interpretation",
|
| 258 |
+
"history": "SOR/2023-241, s. 1",
|
| 259 |
+
"last_amended": "2024-01-08",
|
| 260 |
+
"in_force": "2024-01-08",
|
| 261 |
+
"status": "in force",
|
| 262 |
+
"current_to": "2025-09-15",
|
| 263 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-96-263/section-12.1.html",
|
| 264 |
+
"id": "SOR-96-263-s12.1",
|
| 265 |
+
"text": "12.1 The following definitions apply in this section and sections 12.2 and 12.3.\nelephant means a member of the species Elephas maximus, Loxodonta africana or Loxodonta cyclotis. (éléphant)\nraw horn means a whole rhinoceros horn or a cut piece of rhinoceros horn in any form, polished or unpolished, and includes horn that is part of a taxidermy mount, but does not include a whole horn if its entire surface has been carved or a cut piece of horn if it has been fully or partially carved or shaped. (corne brute)\nraw ivory means a whole elephant tusk or a cut piece of elephant tusk in any form, polished or unpolished, and includes tusk that is part of a taxidermy mount, but does not include a whole tusk if its entire surface has been carved or a cut piece of tusk if it has been fully or partially carved or shaped. (ivoire brut)\nrhinoceros means a member of any species of the family Rhinocerotidae. (rhinocéros)",
|
| 266 |
+
"citation": "WAPTR, s. 12.1"
|
| 267 |
+
},
|
| 268 |
+
{
|
| 269 |
+
"act_code": "SOR-96-263",
|
| 270 |
+
"act_short": "WAPTR",
|
| 271 |
+
"act_name": "Wild Animal and Plant Trade Regulations",
|
| 272 |
+
"section": "12.2",
|
| 273 |
+
"marginal_note": "",
|
| 274 |
+
"part": "",
|
| 275 |
+
"division": "",
|
| 276 |
+
"heading": "Permits",
|
| 277 |
+
"history": "SOR/2023-241, s. 1",
|
| 278 |
+
"last_amended": "2024-01-08",
|
| 279 |
+
"in_force": "2024-01-08",
|
| 280 |
+
"status": "in force",
|
| 281 |
+
"current_to": "2025-09-15",
|
| 282 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-96-263/section-12.2.html",
|
| 283 |
+
"id": "SOR-96-263-s12.2",
|
| 284 |
+
"text": "12.2 Despite any other provision of these Regulations, a person who imports into Canada or exports from Canada any specimen of elephant tusk or rhinoceros horn is under no circumstances exempted from holding a permit issued under subsection 10(1) of the Act.",
|
| 285 |
+
"citation": "WAPTR, s. 12.2"
|
| 286 |
+
},
|
| 287 |
+
{
|
| 288 |
+
"act_code": "SOR-96-263",
|
| 289 |
+
"act_short": "WAPTR",
|
| 290 |
+
"act_name": "Wild Animal and Plant Trade Regulations",
|
| 291 |
+
"section": "12.3",
|
| 292 |
+
"marginal_note": "",
|
| 293 |
+
"part": "",
|
| 294 |
+
"division": "",
|
| 295 |
+
"heading": "Permits",
|
| 296 |
+
"history": "SOR/2023-241, s. 1",
|
| 297 |
+
"last_amended": "2024-01-08",
|
| 298 |
+
"in_force": "2024-01-08",
|
| 299 |
+
"status": "in force",
|
| 300 |
+
"current_to": "2025-09-15",
|
| 301 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-96-263/section-12.3.html",
|
| 302 |
+
"id": "SOR-96-263-s12.3",
|
| 303 |
+
"text": "12.3 A permit issued under subsection 10(1) of the Act must not authorize the importation or exportation of a specimen of raw ivory or raw horn unless the specimen is destined for\n(a) a museum or zoo;\n(b) use in scientific research; or\n(c) use in support of law enforcement activities.",
|
| 304 |
+
"citation": "WAPTR, s. 12.3"
|
| 305 |
+
},
|
| 306 |
+
{
|
| 307 |
+
"act_code": "SOR-96-263",
|
| 308 |
+
"act_short": "WAPTR",
|
| 309 |
+
"act_name": "Wild Animal and Plant Trade Regulations",
|
| 310 |
+
"section": "13",
|
| 311 |
+
"marginal_note": "",
|
| 312 |
+
"part": "",
|
| 313 |
+
"division": "",
|
| 314 |
+
"heading": "Possession Exemptions",
|
| 315 |
+
"history": "SOR/2017-123, s. 4",
|
| 316 |
+
"last_amended": "2017-06-09",
|
| 317 |
+
"in_force": "2017-06-09",
|
| 318 |
+
"status": "in force",
|
| 319 |
+
"current_to": "2025-09-15",
|
| 320 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-96-263/section-13.html",
|
| 321 |
+
"id": "SOR-96-263-s13",
|
| 322 |
+
"text": "13\n(1) Every animal or plant listed as “fauna” or “flora” in Appendix I to the Convention, and any part or derivative of the animal or plant, is exempted from the operation of paragraph 8(c) of the Act where\n(a) the person who possesses it establishes a reasonable probability that it or, in the case of a part or derivative, the animal or plant from which it comes, was taken from its habitat before July 3, 1975;\n(b) the person who possesses it establishes a reasonable probability that it was legally imported into Canada; or\n(c) the person who possesses it establishes a reasonable probability that the distributing of it or the offering to distribute it would be in accordance with any applicable federal and provincial laws that relate to the conservation and protection of the animal or plant.\n(2) Every animal listed as “fauna” in Appendix I to the Convention, and any part or derivative of the animal, is exempted from the operation of paragraph 8(c) of the Act where the animal was bred in captivity or is part of a captive breeding program.\n(3) Every plant listed as “flora” in Appendix I to the Convention, and any part or derivative of the plant, is exempted from the operation of paragraph 8(c) of the Act where the plant was artificially propagated or is part of an artificial propagation program.\n(4) For the purpose of subsection (3), artificially propagated means grown from seeds, spores, pollens, tissue culture or other propagules under controlled conditions.",
|
| 323 |
+
"citation": "WAPTR, s. 13"
|
| 324 |
+
},
|
| 325 |
+
{
|
| 326 |
+
"act_code": "SOR-96-263",
|
| 327 |
+
"act_short": "WAPTR",
|
| 328 |
+
"act_name": "Wild Animal and Plant Trade Regulations",
|
| 329 |
+
"section": "14",
|
| 330 |
+
"marginal_note": "",
|
| 331 |
+
"part": "",
|
| 332 |
+
"division": "",
|
| 333 |
+
"heading": "Interpretation",
|
| 334 |
+
"history": "SOR/2000-3, s. 1",
|
| 335 |
+
"last_amended": "2006-03-22",
|
| 336 |
+
"in_force": "2006-03-22",
|
| 337 |
+
"status": "in force",
|
| 338 |
+
"current_to": "2025-09-15",
|
| 339 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-96-263/section-14.html",
|
| 340 |
+
"id": "SOR-96-263-s14-p1",
|
| 341 |
+
"text": "14 The definitions in this section apply in this section and sections 15 to 19.\ncommercial purpose means any activity related to the sale, offering for sale, purchase, trade or barter of any animal or plant, or any part or derivative of one, without regard to its quantity or weight, including\n(a) any display, performance or exhibit of such a thing for gain or profit; and\n(b) the use of any such thing for the purpose of soliciting sales. (fin commerciale)\ncustoms officer has the meaning assigned to the word officer in subsection 2(1) of the Customs Act. (agent des douanes)\nhousehold effect means a plant or dead animal, or a part or derivative of one, that is imported to or exported from Canada for other than commercial purposes and that\n(a) is owned and possessed by an individual in the individual’s ordinary country of residence and that forms part of the individual’s household belongings that are being shipped to or from Canada, to the individual’s new residence; or\n(b) forms part of an inheritance from an estate that is imported to or exported from Canada. (objet à usage domestique)\nhunting trophy means a dead animal or a part or derivative of one that an individual acquired and possessed through legal hunting. (trophée de chasse)\npersonal baggage means, where an individual uses a commercial passenger conveyance to enter or depart from Canada, all hand-carried items and all checked baggage of the individual and, where an individual uses any other type of conveyance to enter or depart from Canada, baggage that is being carried in or on the same vehicle, vessel or aircraft as the individual. (bagages personnels)\npersonal effect means any of the following things that is imported into or exported from Canada for other than commercial purposes:",
|
| 342 |
+
"citation": "WAPTR, s. 14 (part 1 of 2)"
|
| 343 |
+
},
|
| 344 |
+
{
|
| 345 |
+
"act_code": "SOR-96-263",
|
| 346 |
+
"act_short": "WAPTR",
|
| 347 |
+
"act_name": "Wild Animal and Plant Trade Regulations",
|
| 348 |
+
"section": "14",
|
| 349 |
+
"marginal_note": "",
|
| 350 |
+
"part": "",
|
| 351 |
+
"division": "",
|
| 352 |
+
"heading": "Interpretation",
|
| 353 |
+
"history": "SOR/2000-3, s. 1",
|
| 354 |
+
"last_amended": "2006-03-22",
|
| 355 |
+
"in_force": "2006-03-22",
|
| 356 |
+
"status": "in force",
|
| 357 |
+
"current_to": "2025-09-15",
|
| 358 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-96-263/section-14.html",
|
| 359 |
+
"id": "SOR-96-263-s14-p2",
|
| 360 |
+
"text": "(a) a plant or dead animal, or a part or derivative of one, that is owned and possessed by an individual in the individual’s ordinary country of residence and that, at the time of its import or export, is part of the individual’s clothing or accessories or is contained in the individual’s personal baggage; and\n(b) a tourist souvenir or a hunting trophy. (objet personnel)\npet means a living animal that an individual owns as a personal pet and that is listed in Part I of Schedule I but not in Schedule II. (animal de compagnie)\ntourist souvenir means a dead animal, other than a hunting trophy, or a dead plant, or a part or derivative of one, that is listed in column I of an item of Schedule I and in respect of which there is a reference to Appendix II or III of the Convention in column II of that item and that is being imported into their ordinary country of residence by an individual who acquired, owned and possessed it outside their ordinary country of residence during a sojourn from which they are returning. (souvenir de voyage)",
|
| 361 |
+
"citation": "WAPTR, s. 14 (part 2 of 2)"
|
| 362 |
+
},
|
| 363 |
+
{
|
| 364 |
+
"act_code": "SOR-96-263",
|
| 365 |
+
"act_short": "WAPTR",
|
| 366 |
+
"act_name": "Wild Animal and Plant Trade Regulations",
|
| 367 |
+
"section": "15",
|
| 368 |
+
"marginal_note": "",
|
| 369 |
+
"part": "",
|
| 370 |
+
"division": "",
|
| 371 |
+
"heading": "Personal Effects and Household Effects",
|
| 372 |
+
"history": "SOR/2000-3, s. 1",
|
| 373 |
+
"last_amended": "2006-03-22",
|
| 374 |
+
"in_force": "2006-03-22",
|
| 375 |
+
"status": "in force",
|
| 376 |
+
"current_to": "2025-09-15",
|
| 377 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-96-263/section-15.html",
|
| 378 |
+
"id": "SOR-96-263-s15",
|
| 379 |
+
"text": "15\n(1) Subject to sections 16 and 18, an individual is exempt from holding an import or export permit issued under subsection 10(1) of the Act for any animal or plant, or any part or derivative of one, that is listed in Schedule I but not in Schedule II or Schedule III and that is a personal effect or a household effect, except\n(a) in the case of a tourist souvenir, where it was acquired in a country where removal from the wild occurred and where that country requires the prior grant of an export permit before any export of it;\n(b) in the case of the export of a dead plant or dead animal, or a part or derivative of one, other than feathers, that is raw, unprocessed, semi-processed or simply dried; and\n(c) in the case of a hunting trophy other than one referred to in subsection (2).\n(2) Subject to sections 16 and 18, an individual who is ordinarily resident in Canada or the United States is exempt from holding an import or export permit issued under subsection 10(1) of the Act for the export from Canada to the United States or the import into Canada from the United States of a hunting trophy that is in a fresh, frozen or salted condition and that was acquired and possessed by the individual through legal hunting, where the hunting trophy consists of\n(a) the hide, the hide with paws and claws attached, the skull or meat, excluding organs, of a black bear (Ursus americanus); and\n(b) the carcass or meat of a sandhill crane (Grus canadensis).",
|
| 380 |
+
"citation": "WAPTR, s. 15"
|
| 381 |
+
},
|
| 382 |
+
{
|
| 383 |
+
"act_code": "SOR-96-263",
|
| 384 |
+
"act_short": "WAPTR",
|
| 385 |
+
"act_name": "Wild Animal and Plant Trade Regulations",
|
| 386 |
+
"section": "16",
|
| 387 |
+
"marginal_note": "",
|
| 388 |
+
"part": "",
|
| 389 |
+
"division": "",
|
| 390 |
+
"heading": "Personal Effects and Household Effects",
|
| 391 |
+
"history": "SOR/2000-3, s. 1",
|
| 392 |
+
"last_amended": "2006-03-22",
|
| 393 |
+
"in_force": "2006-03-22",
|
| 394 |
+
"status": "in force",
|
| 395 |
+
"current_to": "2025-09-15",
|
| 396 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-96-263/section-16.html",
|
| 397 |
+
"id": "SOR-96-263-s16",
|
| 398 |
+
"text": "16 The exemption referred to in subsection 15(1) does not apply in respect of the importation or exportation of sturgeon caviar by an individual, if the quantity of caviar being imported or exported is greater than 250 g per individual.",
|
| 399 |
+
"citation": "WAPTR, s. 16"
|
| 400 |
+
},
|
| 401 |
+
{
|
| 402 |
+
"act_code": "SOR-96-263",
|
| 403 |
+
"act_short": "WAPTR",
|
| 404 |
+
"act_name": "Wild Animal and Plant Trade Regulations",
|
| 405 |
+
"section": "17",
|
| 406 |
+
"marginal_note": "",
|
| 407 |
+
"part": "",
|
| 408 |
+
"division": "",
|
| 409 |
+
"heading": "Pets",
|
| 410 |
+
"history": "SOR/2000-3, s. 1",
|
| 411 |
+
"last_amended": "2006-03-22",
|
| 412 |
+
"in_force": "2006-03-22",
|
| 413 |
+
"status": "in force",
|
| 414 |
+
"current_to": "2025-09-15",
|
| 415 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-96-263/section-17.html",
|
| 416 |
+
"id": "SOR-96-263-s17",
|
| 417 |
+
"text": "17 Subject to section 18, an individual who is ordinarily resident in a country other than Canada and who imports a pet into Canada for other than commercial purposes and subsequently exports the pet from Canada is exempt from holding a permit issued under subsection 10(1) of the Act if\n(a) the individual has obtained from the competent authority of the individual’s ordinary country of residence a permit, certificate or other written document authorizing the export from, and subsequent import into, that country of the pet; and\n(b) the permit, certificate or other written document meets the requirements of the Convention and is in conformity with the resolutions passed by the Parties to the Convention regarding the movement of pets.",
|
| 418 |
+
"citation": "WAPTR, s. 17"
|
| 419 |
+
},
|
| 420 |
+
{
|
| 421 |
+
"act_code": "SOR-96-263",
|
| 422 |
+
"act_short": "WAPTR",
|
| 423 |
+
"act_name": "Wild Animal and Plant Trade Regulations",
|
| 424 |
+
"section": "18",
|
| 425 |
+
"marginal_note": "",
|
| 426 |
+
"part": "",
|
| 427 |
+
"division": "",
|
| 428 |
+
"heading": "Exemption Conditions",
|
| 429 |
+
"history": "SOR/2000-3, s. 1",
|
| 430 |
+
"last_amended": "2006-03-22",
|
| 431 |
+
"in_force": "2006-03-22",
|
| 432 |
+
"status": "in force",
|
| 433 |
+
"current_to": "2025-09-15",
|
| 434 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-96-263/section-18.html",
|
| 435 |
+
"id": "SOR-96-263-s18",
|
| 436 |
+
"text": "18\n(1) An individual is exempted under subsection 15(1) or (2) from holding a permit under subsection 10(1) of the Act on the condition that the individual not sell or dispose of the plant or animal or the part or derivative of one that is the subject of the exemption within 90 days after the date of import or export, as the case may be.\n(2) An individual is exempted under section 17 from holding a permit under subsection 10(1) of the Act on the condition that the individual not sell or dispose of the pet that is the subject of the exemption outside of the individual’s ordinary country of residence within 90 days after the date of import or export, as the case may be.",
|
| 437 |
+
"citation": "WAPTR, s. 18"
|
| 438 |
+
},
|
| 439 |
+
{
|
| 440 |
+
"act_code": "SOR-96-263",
|
| 441 |
+
"act_short": "WAPTR",
|
| 442 |
+
"act_name": "Wild Animal and Plant Trade Regulations",
|
| 443 |
+
"section": "19",
|
| 444 |
+
"marginal_note": "",
|
| 445 |
+
"part": "",
|
| 446 |
+
"division": "",
|
| 447 |
+
"heading": "Declaration",
|
| 448 |
+
"history": "SOR/2000-3, s. 1",
|
| 449 |
+
"last_amended": "2006-03-22",
|
| 450 |
+
"in_force": "2006-03-22",
|
| 451 |
+
"status": "in force",
|
| 452 |
+
"current_to": "2025-09-15",
|
| 453 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-96-263/section-19.html",
|
| 454 |
+
"id": "SOR-96-263-s19",
|
| 455 |
+
"text": "19\n(1) Any individual who imports into Canada or exports from Canada an animal or plant, or a part or derivative of one, and who is exempt from holding a permit under these Regulations shall, on the request of an officer or a customs officer under subsection (2), make a declaration at the time of import or export on a form provided for that purpose by the Minister.\n(2) The officer or customs officer shall request a declaration where the Minister requires it in order to obtain information relating to the implementation of the Convention.\n(3) The declaration shall be signed by the importer or exporter and include the following information in respect of the imported or exported animal, plant, part or derivative:\n(a) the name, street address and telephone number of the importer or exporter, as the case may be;\n(b) a description of the animal, plant, part or derivative, in sufficient detail so as to permit it to be identified, including its common name and, if known, its scientific name, and, where applicable, a description of any thing that contains or is made up of the animal, plant, part or derivative;\n(c) its number or quantity;\n(d) its country of import or export, as the case may be;\n(e) whether the animal, plant, part or derivative was acquired by the individual outside the individual’s ordinary country of residence during a sojourn from which they are returning and, if so, the name of the country in which it was acquired; and\n(f) the date of import or export.",
|
| 456 |
+
"citation": "WAPTR, s. 19"
|
| 457 |
+
},
|
| 458 |
+
{
|
| 459 |
+
"act_code": "SOR-96-263",
|
| 460 |
+
"act_short": "WAPTR",
|
| 461 |
+
"act_name": "Wild Animal and Plant Trade Regulations",
|
| 462 |
+
"section": "20",
|
| 463 |
+
"marginal_note": "",
|
| 464 |
+
"part": "",
|
| 465 |
+
"division": "",
|
| 466 |
+
"heading": "Labelling",
|
| 467 |
+
"history": "SOR/2000-3, s. 1",
|
| 468 |
+
"last_amended": "2006-03-22",
|
| 469 |
+
"in_force": "2006-03-22",
|
| 470 |
+
"status": "in force",
|
| 471 |
+
"current_to": "2025-09-15",
|
| 472 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-96-263/section-20.html",
|
| 473 |
+
"id": "SOR-96-263-s20",
|
| 474 |
+
"text": "20 Where a person imports into Canada or exports from Canada any thing that is identified by a mark, label or accompanying document that indicates that the thing is an animal or plant, or a part or derivative of one, that is listed in Schedule I or II, that thing is, unless there is evidence that raises a reasonable doubt to the contrary, deemed to be the thing so identified.",
|
| 475 |
+
"citation": "WAPTR, s. 20"
|
| 476 |
+
},
|
| 477 |
+
{
|
| 478 |
+
"act_code": "SOR-96-263",
|
| 479 |
+
"act_short": "WAPTR",
|
| 480 |
+
"act_name": "Wild Animal and Plant Trade Regulations",
|
| 481 |
+
"section": "21",
|
| 482 |
+
"marginal_note": "",
|
| 483 |
+
"part": "",
|
| 484 |
+
"division": "",
|
| 485 |
+
"heading": "Removal Notice",
|
| 486 |
+
"history": "SOR/2000-3, s. 1",
|
| 487 |
+
"last_amended": "2006-03-22",
|
| 488 |
+
"in_force": "2006-03-22",
|
| 489 |
+
"status": "in force",
|
| 490 |
+
"current_to": "2025-09-15",
|
| 491 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-96-263/section-21.html",
|
| 492 |
+
"id": "SOR-96-263-s21",
|
| 493 |
+
"text": "21 For the purposes of subsection 18(1) of the Act, a removal notice shall contain the following information:\n(a) the name, street address and telephone number of the importer;\n(b) the name, street address and telephone number of the exporter;\n(c) the provision of the Act or these Regulations that the officer believes has been contravened;\n(d) a description of the thing to be removed; and\n(e) the period of time within which the thing must be removed.",
|
| 494 |
+
"citation": "WAPTR, s. 21"
|
| 495 |
+
},
|
| 496 |
+
{
|
| 497 |
+
"act_code": "SOR-96-263",
|
| 498 |
+
"act_short": "WAPTR",
|
| 499 |
+
"act_name": "Wild Animal and Plant Trade Regulations",
|
| 500 |
+
"section": "22",
|
| 501 |
+
"marginal_note": "",
|
| 502 |
+
"part": "",
|
| 503 |
+
"division": "",
|
| 504 |
+
"heading": "Removal Requirements",
|
| 505 |
+
"history": "SOR/2000-3, s. 1",
|
| 506 |
+
"last_amended": "2006-03-22",
|
| 507 |
+
"in_force": "2006-03-22",
|
| 508 |
+
"status": "in force",
|
| 509 |
+
"current_to": "2025-09-15",
|
| 510 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-96-263/section-22.html",
|
| 511 |
+
"id": "SOR-96-263-s22",
|
| 512 |
+
"text": "22 An officer who requires the removal of all or part of a thing in accordance with subsection 18(1) of the Act shall require that the thing or part be inspected and, to the extent possible, marked and labelled, and that a place of export be indicated on the label or accompanying document.",
|
| 513 |
+
"citation": "WAPTR, s. 22"
|
| 514 |
+
},
|
| 515 |
+
{
|
| 516 |
+
"act_code": "SOR-96-263",
|
| 517 |
+
"act_short": "WAPTR",
|
| 518 |
+
"act_name": "Wild Animal and Plant Trade Regulations",
|
| 519 |
+
"section": "23",
|
| 520 |
+
"marginal_note": "",
|
| 521 |
+
"part": "",
|
| 522 |
+
"division": "",
|
| 523 |
+
"heading": "Forfeiture",
|
| 524 |
+
"history": "SOR/2000-3, s. 1",
|
| 525 |
+
"last_amended": "2006-03-22",
|
| 526 |
+
"in_force": "2006-03-22",
|
| 527 |
+
"status": "in force",
|
| 528 |
+
"current_to": "2025-09-15",
|
| 529 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-96-263/section-23.html",
|
| 530 |
+
"id": "SOR-96-263-s23",
|
| 531 |
+
"text": "23 For the purposes of paragraph 19(3)(a) of the Act, the period within which a thing must be removed is 90 days after the date of its detention under section 13 of the Act.",
|
| 532 |
+
"citation": "WAPTR, s. 23"
|
| 533 |
+
}
|
| 534 |
+
]
|
|
@@ -0,0 +1,439 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"act_code": "SOR-96-46",
|
| 4 |
+
"act_short": "Customs Bonded Warehouses Regs",
|
| 5 |
+
"act_name": "Customs Bonded Warehouses Regulations",
|
| 6 |
+
"section": "1",
|
| 7 |
+
"marginal_note": "",
|
| 8 |
+
"part": "",
|
| 9 |
+
"division": "",
|
| 10 |
+
"heading": "",
|
| 11 |
+
"history": "",
|
| 12 |
+
"last_amended": "2024-10-21",
|
| 13 |
+
"in_force": "2024-10-21",
|
| 14 |
+
"status": "repealed",
|
| 15 |
+
"current_to": "2024-10-30",
|
| 16 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-96-46/section-1.html",
|
| 17 |
+
"id": "SOR-96-46-s1",
|
| 18 |
+
"text": "1 [Repealed, SOR/2024-41, s. 65]",
|
| 19 |
+
"citation": "Customs Bonded Warehouses Regs, s. 1"
|
| 20 |
+
},
|
| 21 |
+
{
|
| 22 |
+
"act_code": "SOR-96-46",
|
| 23 |
+
"act_short": "Customs Bonded Warehouses Regs",
|
| 24 |
+
"act_name": "Customs Bonded Warehouses Regulations",
|
| 25 |
+
"section": "2",
|
| 26 |
+
"marginal_note": "",
|
| 27 |
+
"part": "",
|
| 28 |
+
"division": "",
|
| 29 |
+
"heading": "Interpretation",
|
| 30 |
+
"history": "SOR/99-106, s. 1; SOR/2003-241, s. 1; SOR/2015-70, s. 1; 2022, c. 10, s. 106",
|
| 31 |
+
"last_amended": "2022-06-23",
|
| 32 |
+
"in_force": "2015-03-27",
|
| 33 |
+
"status": "in force",
|
| 34 |
+
"current_to": "2024-10-30",
|
| 35 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-96-46/section-2.html",
|
| 36 |
+
"id": "SOR-96-46-s2",
|
| 37 |
+
"text": "2 In these Regulations,\napplicant means a person who applies for a licence; (demandeur)\nbeer means beer or malt liquor as defined in section 4 of the Excise Act; (bière)\nbonded warehouse means a place that is licensed as a bonded warehouse by the Minister of Public Safety and Emergency Preparedness under subsection 91(1) of the Customs Tariff; (entrepôt de stockage)\nbulk has the same meaning as in section 2 of the Excise Act, 2001; (en vrac)\nchief officer of customs, with respect to a bonded warehouse or a proposed bonded warehouse, means the manager of the customs office or customs offices that serve the area in which the bonded warehouse is located or is proposed to be located; (agent en chef des douanes)\ncigar has the same meaning as in section 2 of the Excise Act, 2001; (cigare)\nDepartment[Repealed, SOR/2003-241, s. 1]\nexcise bonding warehouse[Repealed, SOR/2003-241, s. 1]\nintoxicating liquor has the same meaning as in subsection 2(1) of the Importation of Intoxicating Liquors Act; (boissons enivrantes)\nlicence means a licence to operate a place as a bonded warehouse; (agrément)\nlicensee means a person who is the operator of a bonded warehouse and to whom a licence has been issued; (exploitant)\nmanufactured tobacco has the same meaning as in section 2 of the Excise Act, 2001; (tabac fabriqué)\nMinister[Repealed, SOR/2015-70, s. 1]\npackaged has the same meaning as in section 2 of the Excise Act, 2001; (emballé)\npreserving means the preserving of goods by the application of preservative, including lubricants, protective encapsulation and preservation paint, and, if the condition of the goods is not changed, by other means such as freezing, drying and freeze-drying; (préservation)\nstamped has the same meaning as in section 2 of the Excise Act, 2001; (estampillé)\nvaping product has the same meaning as in section 2 of the Excise Act, 2001. (produit de vapotage)",
|
| 38 |
+
"citation": "Customs Bonded Warehouses Regs, s. 2"
|
| 39 |
+
},
|
| 40 |
+
{
|
| 41 |
+
"act_code": "SOR-96-46",
|
| 42 |
+
"act_short": "Customs Bonded Warehouses Regs",
|
| 43 |
+
"act_name": "Customs Bonded Warehouses Regulations",
|
| 44 |
+
"section": "3",
|
| 45 |
+
"marginal_note": "",
|
| 46 |
+
"part": "PART I - Licensing of Bonded Warehouses",
|
| 47 |
+
"division": "",
|
| 48 |
+
"heading": "Issuance of Licence",
|
| 49 |
+
"history": "SOR/99-106, s. 2; SOR/2002-130, s. 1(F); SOR/2003-241, s. 2; SOR/2007-181, s. 3; SOR/2015-70, ss. 2, 6; SOR/2024-41, s. 66",
|
| 50 |
+
"last_amended": "2024-10-21",
|
| 51 |
+
"in_force": "2015-03-27",
|
| 52 |
+
"status": "in force",
|
| 53 |
+
"current_to": "2024-10-30",
|
| 54 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-96-46/section-3.html",
|
| 55 |
+
"id": "SOR-96-46-s3",
|
| 56 |
+
"text": "3\n(1) Subject to subsection (4), the Minister of Public Safety and Emergency Preparedness may issue a licence to any person who\n(a) makes an application in accordance with subsection (2); and\n(b) provides such security as may be required under subsection 91(4) of the Customs Tariff and in accordance with section 4.\n(c) [Repealed, SOR/2015-70, s. 2]\n(2) An application for a licence must be submitted to the Minister in the prescribed form, together with a detailed plan of the proposed bonded warehouse.\n(3) The plan referred to in subsection (2) must indicate\n(a) whether the place proposed to be operated as a bonded warehouse exists or is to be constructed;\n(b) the type of construction of the place, whether or not it already exists; and\n(c) the area, within the place, that is to be used for the storage of goods.\n(4) The Minister of Public Safety and Emergency Preparedness shall not issue a licence to an applicant unless\n(a) the applicant is of good character;\n(b) the site of the proposed bonded warehouse is within an area served by a customs office;\n(c) the applicant has sufficient financial resources\n(i) to meet the requirements set out in sections 11 and 12, and\n(ii) to lease or purchase the place proposed to be operated as a bonded warehouse;\n(d) the applicant will provide conditions suitable for the safekeeping of goods; and\n(e) the Canada Border Services Agency is able to provide customs services with respect to the proposed bonded warehouse.\n(5) The terms and conditions under which a licence may be issued include the extent to which and circumstances in which, in accordance with section 20, goods may be manipulated, unpacked, packed, altered or combined with other goods while in bonded warehouses.",
|
| 57 |
+
"citation": "Customs Bonded Warehouses Regs, s. 3"
|
| 58 |
+
},
|
| 59 |
+
{
|
| 60 |
+
"act_code": "SOR-96-46",
|
| 61 |
+
"act_short": "Customs Bonded Warehouses Regs",
|
| 62 |
+
"act_name": "Customs Bonded Warehouses Regulations",
|
| 63 |
+
"section": "4",
|
| 64 |
+
"marginal_note": "",
|
| 65 |
+
"part": "PART I - Licensing of Bonded Warehouses",
|
| 66 |
+
"division": "",
|
| 67 |
+
"heading": "Security",
|
| 68 |
+
"history": "SOR/99-106, s. 2; SOR/2001-197, s. 9; SOR/2024-41, s. 67",
|
| 69 |
+
"last_amended": "2024-10-21",
|
| 70 |
+
"in_force": "2024-10-21",
|
| 71 |
+
"status": "in force",
|
| 72 |
+
"current_to": "2024-10-30",
|
| 73 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-96-46/section-4.html",
|
| 74 |
+
"id": "SOR-96-46-s4",
|
| 75 |
+
"text": "4 For the purposes of subsection 91(4) of the Customs Tariff, security must be provided in accordance with the requirements of the Financial Security (Electronic Means) Regulations.",
|
| 76 |
+
"citation": "Customs Bonded Warehouses Regs, s. 4"
|
| 77 |
+
},
|
| 78 |
+
{
|
| 79 |
+
"act_code": "SOR-96-46",
|
| 80 |
+
"act_short": "Customs Bonded Warehouses Regs",
|
| 81 |
+
"act_name": "Customs Bonded Warehouses Regulations",
|
| 82 |
+
"section": "5",
|
| 83 |
+
"marginal_note": "",
|
| 84 |
+
"part": "PART I - Licensing of Bonded Warehouses",
|
| 85 |
+
"division": "",
|
| 86 |
+
"heading": "Security",
|
| 87 |
+
"history": "",
|
| 88 |
+
"last_amended": "2015-03-27",
|
| 89 |
+
"in_force": "2015-03-27",
|
| 90 |
+
"status": "repealed",
|
| 91 |
+
"current_to": "2024-10-30",
|
| 92 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-96-46/section-5.html",
|
| 93 |
+
"id": "SOR-96-46-s5",
|
| 94 |
+
"text": "5 [Repealed, SOR/2015-70, s. 3]",
|
| 95 |
+
"citation": "Customs Bonded Warehouses Regs, s. 5"
|
| 96 |
+
},
|
| 97 |
+
{
|
| 98 |
+
"act_code": "SOR-96-46",
|
| 99 |
+
"act_short": "Customs Bonded Warehouses Regs",
|
| 100 |
+
"act_name": "Customs Bonded Warehouses Regulations",
|
| 101 |
+
"section": "6",
|
| 102 |
+
"marginal_note": "",
|
| 103 |
+
"part": "PART I - Licensing of Bonded Warehouses",
|
| 104 |
+
"division": "",
|
| 105 |
+
"heading": "Amendment of Licence",
|
| 106 |
+
"history": "SOR/2015-70, s. 6",
|
| 107 |
+
"last_amended": "2015-03-27",
|
| 108 |
+
"in_force": "2015-03-27",
|
| 109 |
+
"status": "in force",
|
| 110 |
+
"current_to": "2024-10-30",
|
| 111 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-96-46/section-6.html",
|
| 112 |
+
"id": "SOR-96-46-s6",
|
| 113 |
+
"text": "6 The Minister of Public Safety and Emergency Preparedness may amend a licence only where the name of the licensee has been changed legally.",
|
| 114 |
+
"citation": "Customs Bonded Warehouses Regs, s. 6"
|
| 115 |
+
},
|
| 116 |
+
{
|
| 117 |
+
"act_code": "SOR-96-46",
|
| 118 |
+
"act_short": "Customs Bonded Warehouses Regs",
|
| 119 |
+
"act_name": "Customs Bonded Warehouses Regulations",
|
| 120 |
+
"section": "7",
|
| 121 |
+
"marginal_note": "",
|
| 122 |
+
"part": "PART I - Licensing of Bonded Warehouses",
|
| 123 |
+
"division": "",
|
| 124 |
+
"heading": "Cancellation or Suspension of Licences",
|
| 125 |
+
"history": "SOR/2015-70, ss. 4(E), 6",
|
| 126 |
+
"last_amended": "2015-03-27",
|
| 127 |
+
"in_force": "2015-03-27",
|
| 128 |
+
"status": "in force",
|
| 129 |
+
"current_to": "2024-10-30",
|
| 130 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-96-46/section-7.html",
|
| 131 |
+
"id": "SOR-96-46-s7",
|
| 132 |
+
"text": "7 The Minister of Public Safety and Emergency Preparedness may cancel a licence where the licensee\n(a) no longer owns or leases the place that is licensed as a bonded warehouse;\n(b) makes a request in writing to that Minister that the licence be cancelled; or\n(c) is bankrupt.",
|
| 133 |
+
"citation": "Customs Bonded Warehouses Regs, s. 7"
|
| 134 |
+
},
|
| 135 |
+
{
|
| 136 |
+
"act_code": "SOR-96-46",
|
| 137 |
+
"act_short": "Customs Bonded Warehouses Regs",
|
| 138 |
+
"act_name": "Customs Bonded Warehouses Regulations",
|
| 139 |
+
"section": "8",
|
| 140 |
+
"marginal_note": "",
|
| 141 |
+
"part": "PART I - Licensing of Bonded Warehouses",
|
| 142 |
+
"division": "",
|
| 143 |
+
"heading": "Cancellation or Suspension of Licences",
|
| 144 |
+
"history": "SOR/2002-130, s. 2; SOR/2003-241, s. 3; err.(E), Vol. 138, No. 6; SOR/2007-181, s. 3; SOR/2015-70, s. 6",
|
| 145 |
+
"last_amended": "2015-03-27",
|
| 146 |
+
"in_force": "2015-03-27",
|
| 147 |
+
"status": "in force",
|
| 148 |
+
"current_to": "2024-10-30",
|
| 149 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-96-46/section-8.html",
|
| 150 |
+
"id": "SOR-96-46-s8",
|
| 151 |
+
"text": "8\n(1) Subject to section 9, the Minister of Public Safety and Emergency Preparedness may suspend or cancel a licence where the licensee\n(a) is the subject of a receivership in respect of the licensee’s debts;\n(b) fails to comply with any Act of Parliament, or any regulation made pursuant to an Act of Parliament, that prohibits, controls or regulates the importation or exportation of goods;\n(c) has, in the course of operating the bonded warehouse, acted dishonestly in business dealings with customs brokers, importers, carriers, Her Majesty or servants of Her Majesty;\n(d) has not met any of the requirements set out in sections 11 and 12; or\n(e) has been incompetent in the operation of the bonded warehouse.\n(2) Subject to section 9, the Minister of Public Safety and Emergency Preparedness may cancel a licence where\n(a) the volume of goods being received in the bonded warehouse is no longer sufficient to warrant the continued operation of the bonded warehouse;\n(b) there is no longer a need for a bonded warehouse in the area in which the bonded warehouse is located;\n(c) the Canada Border Services Agency is no longer able to provide customs services with respect to the bonded warehouse;\n(d) the licensee manipulates, unpacks, packs, alters or combines the goods with other goods while in the bonded warehouse other than in accordance with the terms and conditions set out in the licence; or\n(e) the licensee contravenes section 20.\n(3) Where a licence is suspended, an officer may lock and seal the bonded warehouse and keep it locked and sealed during the period of suspension.",
|
| 152 |
+
"citation": "Customs Bonded Warehouses Regs, s. 8"
|
| 153 |
+
},
|
| 154 |
+
{
|
| 155 |
+
"act_code": "SOR-96-46",
|
| 156 |
+
"act_short": "Customs Bonded Warehouses Regs",
|
| 157 |
+
"act_name": "Customs Bonded Warehouses Regulations",
|
| 158 |
+
"section": "9",
|
| 159 |
+
"marginal_note": "",
|
| 160 |
+
"part": "PART I - Licensing of Bonded Warehouses",
|
| 161 |
+
"division": "",
|
| 162 |
+
"heading": "Cancellation or Suspension of Licences",
|
| 163 |
+
"history": "SOR/2015-70, ss. 5, 6",
|
| 164 |
+
"last_amended": "2015-03-27",
|
| 165 |
+
"in_force": "2015-03-27",
|
| 166 |
+
"status": "in force",
|
| 167 |
+
"current_to": "2024-10-30",
|
| 168 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-96-46/section-9.html",
|
| 169 |
+
"id": "SOR-96-46-s9",
|
| 170 |
+
"text": "9\n(1) The Minister of Public Safety and Emergency Preparedness shall, immediately after suspending a licence, give the licensee a notice that confirms the suspension and that provides all relevant information concerning the grounds for the suspension.\n(2) The licensee may, within 90 days after the day on which the licence is suspended, make representations to the Minister of Public Safety and Emergency Preparedness regarding why the licence should be reinstated.\n(3) The Minister of Public Safety and Emergency Preparedness shall, before cancelling a licence under section 8, give the licensee 90 days’ notice of the proposed cancellation and provide the licensee with all relevant information concerning the grounds for the proposed cancellation.\n(4) The licensee may, within 90 days after the day on which the notice referred to in subsection (3) is given, make representations to the Minister of Public Safety and Emergency Preparedness regarding why the licence should not be cancelled.",
|
| 171 |
+
"citation": "Customs Bonded Warehouses Regs, s. 9"
|
| 172 |
+
},
|
| 173 |
+
{
|
| 174 |
+
"act_code": "SOR-96-46",
|
| 175 |
+
"act_short": "Customs Bonded Warehouses Regs",
|
| 176 |
+
"act_name": "Customs Bonded Warehouses Regulations",
|
| 177 |
+
"section": "10",
|
| 178 |
+
"marginal_note": "",
|
| 179 |
+
"part": "PART I - Licensing of Bonded Warehouses",
|
| 180 |
+
"division": "",
|
| 181 |
+
"heading": "Reinstatement of Licences",
|
| 182 |
+
"history": "SOR/2015-70, s. 6",
|
| 183 |
+
"last_amended": "2015-03-27",
|
| 184 |
+
"in_force": "2015-03-27",
|
| 185 |
+
"status": "in force",
|
| 186 |
+
"current_to": "2024-10-30",
|
| 187 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-96-46/section-10.html",
|
| 188 |
+
"id": "SOR-96-46-s10",
|
| 189 |
+
"text": "10 The Minister of Public Safety and Emergency Preparedness may reinstate a suspended licence where the cause for the suspension no longer exists.",
|
| 190 |
+
"citation": "Customs Bonded Warehouses Regs, s. 10"
|
| 191 |
+
},
|
| 192 |
+
{
|
| 193 |
+
"act_code": "SOR-96-46",
|
| 194 |
+
"act_short": "Customs Bonded Warehouses Regs",
|
| 195 |
+
"act_name": "Customs Bonded Warehouses Regulations",
|
| 196 |
+
"section": "11",
|
| 197 |
+
"marginal_note": "",
|
| 198 |
+
"part": "PART II - Operation of Bonded Warehouses",
|
| 199 |
+
"division": "",
|
| 200 |
+
"heading": "Facilities, Equipment and Personnel",
|
| 201 |
+
"history": "",
|
| 202 |
+
"last_amended": "2006-03-22",
|
| 203 |
+
"in_force": "2006-03-22",
|
| 204 |
+
"status": "in force",
|
| 205 |
+
"current_to": "2024-10-30",
|
| 206 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-96-46/section-11.html",
|
| 207 |
+
"id": "SOR-96-46-s11",
|
| 208 |
+
"text": "11\n(1) Every licensee shall provide at the bonded warehouse in respect of which the licence was issued\n(a) such facilities, equipment and personnel as are sufficient to control access to the bonded warehouse premises and provide secure storage of the goods in it, including\n(i) doors and other building components of sturdy construction,\n(ii) secure locks on doors and windows,\n(iii) signs that indicate the security requirements applicable to the premises, and\n(iv) where the bonded warehouse will be used for the storage of designated goods, such additional facilities and equipment as may be required to ensure the secure storage of those goods;\n(b) adequate space for the examination of goods by officers;\n(c) the personnel and equipment necessary to ensure that the goods to be examined by an officer are made available to the officer for examination; and\n(d) the personnel necessary to furnish information, for audit purposes, to an officer with respect to the bonded warehouse operations and inventory system.\n(2) Where a bonded warehouse forms only part of a building, the licensee shall, if so requested by the chief officer of customs, keep the bonded warehouse separate from the remainder of the building by a partition or other structure.",
|
| 209 |
+
"citation": "Customs Bonded Warehouses Regs, s. 11"
|
| 210 |
+
},
|
| 211 |
+
{
|
| 212 |
+
"act_code": "SOR-96-46",
|
| 213 |
+
"act_short": "Customs Bonded Warehouses Regs",
|
| 214 |
+
"act_name": "Customs Bonded Warehouses Regulations",
|
| 215 |
+
"section": "12",
|
| 216 |
+
"marginal_note": "",
|
| 217 |
+
"part": "PART II - Operation of Bonded Warehouses",
|
| 218 |
+
"division": "",
|
| 219 |
+
"heading": "Operation and Maintenance Standards",
|
| 220 |
+
"history": "",
|
| 221 |
+
"last_amended": "2006-03-22",
|
| 222 |
+
"in_force": "2006-03-22",
|
| 223 |
+
"status": "in force",
|
| 224 |
+
"current_to": "2024-10-30",
|
| 225 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-96-46/section-12.html",
|
| 226 |
+
"id": "SOR-96-46-s12",
|
| 227 |
+
"text": "12\n(1) Every licensee shall ensure that the goods received in the bonded warehouse are\n(a) stored safely and securely in the area designated for that purpose in the plan referred to in subsection 3(2); and\n(b) identified in such a manner so as to enable an officer to locate the goods and check them against the appropriate documentation.\n(2) No person, other than the licensee, an employee of the licensee or an employee of a carrier engaged in the delivery of goods to or the removal of goods from the bonded warehouse, shall enter any place in it where goods are stored, without the written authorization or the attendance of an officer.\n(3) Every licensee of a bonded warehouse shall have in place\n(a) procedures to maintain the security of, and restrict access to, the bonded warehouse; and\n(b) procedures to ensure that personnel working in the bonded warehouse are aware of and follow the procedures referred to in paragraph (a).\n(4) A bonded warehouse may be locked and sealed by an officer where the chief officer of customs requests that the bonded warehouse be locked and sealed, for the purpose of verifying the goods received or the warehouse documentation.",
|
| 228 |
+
"citation": "Customs Bonded Warehouses Regs, s. 12"
|
| 229 |
+
},
|
| 230 |
+
{
|
| 231 |
+
"act_code": "SOR-96-46",
|
| 232 |
+
"act_short": "Customs Bonded Warehouses Regs",
|
| 233 |
+
"act_name": "Customs Bonded Warehouses Regulations",
|
| 234 |
+
"section": "13",
|
| 235 |
+
"marginal_note": "",
|
| 236 |
+
"part": "PART II - Operation of Bonded Warehouses",
|
| 237 |
+
"division": "",
|
| 238 |
+
"heading": "Restrictions on Goods",
|
| 239 |
+
"history": "",
|
| 240 |
+
"last_amended": "2006-03-22",
|
| 241 |
+
"in_force": "2006-03-22",
|
| 242 |
+
"status": "in force",
|
| 243 |
+
"current_to": "2024-10-30",
|
| 244 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-96-46/section-13.html",
|
| 245 |
+
"id": "SOR-96-46-s13",
|
| 246 |
+
"text": "13 No licensee shall receive in or transfer from a bonded warehouse in a province intoxicating liquor unless the licensee has obtained written approval to receive or transfer the intoxicating liquor from the board, commission or agency authorized by the laws of that province to sell or authorize the sale of intoxicating liquor in that province.",
|
| 247 |
+
"citation": "Customs Bonded Warehouses Regs, s. 13"
|
| 248 |
+
},
|
| 249 |
+
{
|
| 250 |
+
"act_code": "SOR-96-46",
|
| 251 |
+
"act_short": "Customs Bonded Warehouses Regs",
|
| 252 |
+
"act_name": "Customs Bonded Warehouses Regulations",
|
| 253 |
+
"section": "14",
|
| 254 |
+
"marginal_note": "",
|
| 255 |
+
"part": "PART II - Operation of Bonded Warehouses",
|
| 256 |
+
"division": "",
|
| 257 |
+
"heading": "Restrictions on Goods",
|
| 258 |
+
"history": "SOR/2003-241, s. 4; 2022, c. 10, s. 107",
|
| 259 |
+
"last_amended": "2022-10-01",
|
| 260 |
+
"in_force": "2006-03-22",
|
| 261 |
+
"status": "in force",
|
| 262 |
+
"current_to": "2024-10-30",
|
| 263 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-96-46/section-14.html",
|
| 264 |
+
"id": "SOR-96-46-s14",
|
| 265 |
+
"text": "14 No licensee shall receive the following domestic products into a bonded warehouse:\n(a) cigars;\n(b) packaged raw leaf tobacco;\n(c) manufactured tobacco that is not stamped;\n(d) non-duty paid packaged or bulk spirits;\n(e) non-duty paid packaged or bulk wine;\n(f) non-duty paid specially denatured alcohol; and\n(g) vaping products that are not stamped.",
|
| 266 |
+
"citation": "Customs Bonded Warehouses Regs, s. 14"
|
| 267 |
+
},
|
| 268 |
+
{
|
| 269 |
+
"act_code": "SOR-96-46",
|
| 270 |
+
"act_short": "Customs Bonded Warehouses Regs",
|
| 271 |
+
"act_name": "Customs Bonded Warehouses Regulations",
|
| 272 |
+
"section": "15",
|
| 273 |
+
"marginal_note": "",
|
| 274 |
+
"part": "PART II - Operation of Bonded Warehouses",
|
| 275 |
+
"division": "",
|
| 276 |
+
"heading": "Restrictions on Goods",
|
| 277 |
+
"history": "SOR/2003-241, s. 4",
|
| 278 |
+
"last_amended": "2006-03-22",
|
| 279 |
+
"in_force": "2006-03-22",
|
| 280 |
+
"status": "in force",
|
| 281 |
+
"current_to": "2024-10-30",
|
| 282 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-96-46/section-15.html",
|
| 283 |
+
"id": "SOR-96-46-s15",
|
| 284 |
+
"text": "15 No licensee shall receive into or remove from a bonded warehouse, imported tobacco products, or imported packaged spirits or wine, unless they are to be removed from the warehouse for sale to a foreign diplomat in Canada, export from Canada, sale to a duty free shop or use as ships’ stores and, in the case of spirits or wine, supply to an air carrier that is licensed under section 69 or 73 of the Canada Transportation Act to operate an international service within the meaning of subsection 55(1) of that Act.",
|
| 285 |
+
"citation": "Customs Bonded Warehouses Regs, s. 15"
|
| 286 |
+
},
|
| 287 |
+
{
|
| 288 |
+
"act_code": "SOR-96-46",
|
| 289 |
+
"act_short": "Customs Bonded Warehouses Regs",
|
| 290 |
+
"act_name": "Customs Bonded Warehouses Regulations",
|
| 291 |
+
"section": "16",
|
| 292 |
+
"marginal_note": "",
|
| 293 |
+
"part": "PART II - Operation of Bonded Warehouses",
|
| 294 |
+
"division": "",
|
| 295 |
+
"heading": "Restrictions on Goods",
|
| 296 |
+
"history": "SOR/2003-241, s. 4",
|
| 297 |
+
"last_amended": "2006-03-22",
|
| 298 |
+
"in_force": "2006-03-22",
|
| 299 |
+
"status": "in force",
|
| 300 |
+
"current_to": "2024-10-30",
|
| 301 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-96-46/section-16.html",
|
| 302 |
+
"id": "SOR-96-46-s16",
|
| 303 |
+
"text": "16 No licensee shall receive the following imported products into a bonded warehouse, unless they are to be removed from the warehouse for export from Canada:\n(a) bulk spirits;\n(b) bulk wine; and\n(c) specially denatured alcohol.",
|
| 304 |
+
"citation": "Customs Bonded Warehouses Regs, s. 16"
|
| 305 |
+
},
|
| 306 |
+
{
|
| 307 |
+
"act_code": "SOR-96-46",
|
| 308 |
+
"act_short": "Customs Bonded Warehouses Regs",
|
| 309 |
+
"act_name": "Customs Bonded Warehouses Regulations",
|
| 310 |
+
"section": "16.1",
|
| 311 |
+
"marginal_note": "",
|
| 312 |
+
"part": "PART II - Operation of Bonded Warehouses",
|
| 313 |
+
"division": "",
|
| 314 |
+
"heading": "Restrictions on Goods",
|
| 315 |
+
"history": "2022, c. 10, s. 108",
|
| 316 |
+
"last_amended": "2022-10-01",
|
| 317 |
+
"in_force": "2022-10-01",
|
| 318 |
+
"status": "in force",
|
| 319 |
+
"current_to": "2024-10-30",
|
| 320 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-96-46/section-16.1.html",
|
| 321 |
+
"id": "SOR-96-46-s16.1",
|
| 322 |
+
"text": "16.1 No licensee shall receive into or remove from a bonded warehouse imported vaping products unless they are to be removed from the warehouse for sale to a foreign diplomat in Canada or export from Canada.",
|
| 323 |
+
"citation": "Customs Bonded Warehouses Regs, s. 16.1"
|
| 324 |
+
},
|
| 325 |
+
{
|
| 326 |
+
"act_code": "SOR-96-46",
|
| 327 |
+
"act_short": "Customs Bonded Warehouses Regs",
|
| 328 |
+
"act_name": "Customs Bonded Warehouses Regulations",
|
| 329 |
+
"section": "17",
|
| 330 |
+
"marginal_note": "",
|
| 331 |
+
"part": "PART II - Operation of Bonded Warehouses",
|
| 332 |
+
"division": "",
|
| 333 |
+
"heading": "Receipt of Goods",
|
| 334 |
+
"history": "",
|
| 335 |
+
"last_amended": "2006-03-22",
|
| 336 |
+
"in_force": "2006-03-22",
|
| 337 |
+
"status": "in force",
|
| 338 |
+
"current_to": "2024-10-30",
|
| 339 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-96-46/section-17.html",
|
| 340 |
+
"id": "SOR-96-46-s17",
|
| 341 |
+
"text": "17 Every licensee shall\n(a) acknowledge receipt of imported goods into the bonded warehouse in respect of which their licence was issued by endorsing\n(i) the transportation document presented to the licensee by the carrier, and\n(ii) the form that is referred to in subsection 19(2) of the Customs Act and is presented to the licensee by the importer or owner of the goods; and\n(b) acknowledge the receipt of any other goods that have been received in the bonded warehouse by completing the delivery document in the manner described in the prescribed form.",
|
| 342 |
+
"citation": "Customs Bonded Warehouses Regs, s. 17"
|
| 343 |
+
},
|
| 344 |
+
{
|
| 345 |
+
"act_code": "SOR-96-46",
|
| 346 |
+
"act_short": "Customs Bonded Warehouses Regs",
|
| 347 |
+
"act_name": "Customs Bonded Warehouses Regulations",
|
| 348 |
+
"section": "18",
|
| 349 |
+
"marginal_note": "",
|
| 350 |
+
"part": "PART II - Operation of Bonded Warehouses",
|
| 351 |
+
"division": "",
|
| 352 |
+
"heading": "Prescribed Class of Goods and Period of Time",
|
| 353 |
+
"history": "SOR/2003-241, s. 5; 2022, c. 10, s. 109",
|
| 354 |
+
"last_amended": "2022-10-01",
|
| 355 |
+
"in_force": "2022-10-01",
|
| 356 |
+
"status": "in force",
|
| 357 |
+
"current_to": "2024-10-30",
|
| 358 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-96-46/section-18.html",
|
| 359 |
+
"id": "SOR-96-46-s18",
|
| 360 |
+
"text": "18 For the purposes of subsections 37(2) and 39.1(2) of the Customs Act, tobacco products, packaged spirits and vaping products are a prescribed class of goods and are forfeit if they have not been removed from the bonded warehouse within five years of the day on which the goods are described in the form prescribed under subsection 19(2) of that Act.",
|
| 361 |
+
"citation": "Customs Bonded Warehouses Regs, s. 18"
|
| 362 |
+
},
|
| 363 |
+
{
|
| 364 |
+
"act_code": "SOR-96-46",
|
| 365 |
+
"act_short": "Customs Bonded Warehouses Regs",
|
| 366 |
+
"act_name": "Customs Bonded Warehouses Regulations",
|
| 367 |
+
"section": "19",
|
| 368 |
+
"marginal_note": "",
|
| 369 |
+
"part": "PART II - Operation of Bonded Warehouses",
|
| 370 |
+
"division": "",
|
| 371 |
+
"heading": "Time Limits",
|
| 372 |
+
"history": "SOR/2003-241, s. 6(E)",
|
| 373 |
+
"last_amended": "2006-03-22",
|
| 374 |
+
"in_force": "2006-03-22",
|
| 375 |
+
"status": "in force",
|
| 376 |
+
"current_to": "2024-10-30",
|
| 377 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-96-46/section-19.html",
|
| 378 |
+
"id": "SOR-96-46-s19",
|
| 379 |
+
"text": "19 For the purposes of subsection 37(2) of the Customs Act, the prescribed time in respect of goods referred to in column I of the schedule is the time set out in column II, which time begins on the day on which the goods are described in the form prescribed under subsection 19(2) of that Act.",
|
| 380 |
+
"citation": "Customs Bonded Warehouses Regs, s. 19"
|
| 381 |
+
},
|
| 382 |
+
{
|
| 383 |
+
"act_code": "SOR-96-46",
|
| 384 |
+
"act_short": "Customs Bonded Warehouses Regs",
|
| 385 |
+
"act_name": "Customs Bonded Warehouses Regulations",
|
| 386 |
+
"section": "20",
|
| 387 |
+
"marginal_note": "",
|
| 388 |
+
"part": "PART II - Operation of Bonded Warehouses",
|
| 389 |
+
"division": "",
|
| 390 |
+
"heading": "Manipulation, Alteration and Combination of Goods",
|
| 391 |
+
"history": "SOR/2002-130, s. 4",
|
| 392 |
+
"last_amended": "2006-03-22",
|
| 393 |
+
"in_force": "2006-03-22",
|
| 394 |
+
"status": "in force",
|
| 395 |
+
"current_to": "2024-10-30",
|
| 396 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-96-46/section-20.html",
|
| 397 |
+
"id": "SOR-96-46-s20",
|
| 398 |
+
"text": "20 Every licensee shall ensure that goods are not manipulated, altered or combined with other goods while in the bonded warehouse except for the purpose of or in the course of\n(a) disassembling or reassembling goods that have been assembled or disassembled for packing, handling or transportation;\n(b) displaying;\n(c) inspecting;\n(d) marking, labelling, tagging or ticketing;\n(e) packing, unpacking, packaging or repackaging;\n(f) removing from the warehouse, for the sole purpose of soliciting orders for goods or services, a small quantity of material, or a portion, a piece or an individual object, that represents the goods;\n(g) storing;\n(h) testing; or\n(i) any of the following that do not materially alter the characteristics of the goods:\n(i) cleaning,\n(ii) complying with any applicable law of Canada or of a province,\n(iii) diluting,\n(iv) normal maintenance and servicing,\n(v) preserving,\n(vi) separating defective goods from prime quality goods,\n(vii) sorting or grading, and\n(viii) trimming, filing, slitting or cutting.",
|
| 399 |
+
"citation": "Customs Bonded Warehouses Regs, s. 20"
|
| 400 |
+
},
|
| 401 |
+
{
|
| 402 |
+
"act_code": "SOR-96-46",
|
| 403 |
+
"act_short": "Customs Bonded Warehouses Regs",
|
| 404 |
+
"act_name": "Customs Bonded Warehouses Regulations",
|
| 405 |
+
"section": "21",
|
| 406 |
+
"marginal_note": "",
|
| 407 |
+
"part": "PART II - Operation of Bonded Warehouses",
|
| 408 |
+
"division": "",
|
| 409 |
+
"heading": "Transfer and Removal of Goods",
|
| 410 |
+
"history": "",
|
| 411 |
+
"last_amended": "2006-03-22",
|
| 412 |
+
"in_force": "2006-03-22",
|
| 413 |
+
"status": "in force",
|
| 414 |
+
"current_to": "2024-10-30",
|
| 415 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-96-46/section-21.html",
|
| 416 |
+
"id": "SOR-96-46-s21",
|
| 417 |
+
"text": "21 Where there is a transfer of ownership of goods stored in a bonded warehouse, the importer or owner of the goods shall submit a transfer document in the prescribed form to an officer at the customs office where the goods were described under subsection 19(2) of the Customs Act.",
|
| 418 |
+
"citation": "Customs Bonded Warehouses Regs, s. 21"
|
| 419 |
+
},
|
| 420 |
+
{
|
| 421 |
+
"act_code": "SOR-96-46",
|
| 422 |
+
"act_short": "Customs Bonded Warehouses Regs",
|
| 423 |
+
"act_name": "Customs Bonded Warehouses Regulations",
|
| 424 |
+
"section": "22",
|
| 425 |
+
"marginal_note": "",
|
| 426 |
+
"part": "PART II - Operation of Bonded Warehouses",
|
| 427 |
+
"division": "",
|
| 428 |
+
"heading": "Transfer and Removal of Goods",
|
| 429 |
+
"history": "",
|
| 430 |
+
"last_amended": "2006-03-22",
|
| 431 |
+
"in_force": "2006-03-22",
|
| 432 |
+
"status": "in force",
|
| 433 |
+
"current_to": "2024-10-30",
|
| 434 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-96-46/section-22.html",
|
| 435 |
+
"id": "SOR-96-46-s22",
|
| 436 |
+
"text": "22 Where the importer or owner of goods stored in a bonded warehouse wants the goods removed from the bonded warehouse in smaller units than those described under subsection 19(2) of the Customs Act, the importer or owner shall submit to the chief officer of customs\n(a) where the goods are to be released, an amended accounting in the prescribed form; or\n(b) where the goods are not to be released, an amended description in the prescribed form.",
|
| 437 |
+
"citation": "Customs Bonded Warehouses Regs, s. 22"
|
| 438 |
+
}
|
| 439 |
+
]
|
|
@@ -0,0 +1,135 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"act_code": "SOR-98-58",
|
| 4 |
+
"act_short": "Returning Persons Exemption Regs",
|
| 5 |
+
"act_name": "Returning Persons Exemption Regulations",
|
| 6 |
+
"section": "1",
|
| 7 |
+
"marginal_note": "",
|
| 8 |
+
"part": "",
|
| 9 |
+
"division": "",
|
| 10 |
+
"heading": "Interpretation",
|
| 11 |
+
"history": "SOR/2003-240, s. 1; SOR/2004-128, s. 1; SOR/2020-64, s. 6",
|
| 12 |
+
"last_amended": "2020-07-01",
|
| 13 |
+
"in_force": "2006-03-22",
|
| 14 |
+
"status": "in force",
|
| 15 |
+
"current_to": "2024-10-30",
|
| 16 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-98-58/section-1.html",
|
| 17 |
+
"id": "SOR-98-58-s1",
|
| 18 |
+
"text": "1 The definitions in this section apply in these Regulations.\naccredited organization[Repealed, SOR/2003-240, s. 1]\ncarnet means an A.T.A. (Admission Temporaire-Temporary Admission) carnet referred to in the International Customs Convention on the A.T.A. Carnet for the Temporary Admission of Goods. (carnet)\nconvention means an assembly of persons that is closed to the general public and that meets for a common purpose. (congrès)\nemergency[Repealed, SOR/2003-240, s. 1]\nexhibition[Repealed, SOR/2003-240, s. 1]\nMinister means the Minister of National Revenue. (ministre)\noriginating good means a good that qualifies as originating under the CUSMA Rules of Origin Regulations, the CCFTA Rules of Origin Regulations or the CCRFTA Rules of Origin Regulations. (marchandise originaire)",
|
| 19 |
+
"citation": "Returning Persons Exemption Regs, s. 1"
|
| 20 |
+
},
|
| 21 |
+
{
|
| 22 |
+
"act_code": "SOR-98-58",
|
| 23 |
+
"act_short": "Returning Persons Exemption Regs",
|
| 24 |
+
"act_name": "Returning Persons Exemption Regulations",
|
| 25 |
+
"section": "2",
|
| 26 |
+
"marginal_note": "",
|
| 27 |
+
"part": "",
|
| 28 |
+
"division": "",
|
| 29 |
+
"heading": "Application",
|
| 30 |
+
"history": "",
|
| 31 |
+
"last_amended": "2006-03-22",
|
| 32 |
+
"in_force": "2006-03-22",
|
| 33 |
+
"status": "in force",
|
| 34 |
+
"current_to": "2024-10-30",
|
| 35 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-98-58/section-2.html",
|
| 36 |
+
"id": "SOR-98-58-s2",
|
| 37 |
+
"text": "2 These Regulations apply in respect of goods that are imported on a temporary basis under tariff item No. 9993.00.00.",
|
| 38 |
+
"citation": "Returning Persons Exemption Regs, s. 2"
|
| 39 |
+
},
|
| 40 |
+
{
|
| 41 |
+
"act_code": "SOR-98-58",
|
| 42 |
+
"act_short": "Returning Persons Exemption Regs",
|
| 43 |
+
"act_name": "Returning Persons Exemption Regulations",
|
| 44 |
+
"section": "3",
|
| 45 |
+
"marginal_note": "",
|
| 46 |
+
"part": "",
|
| 47 |
+
"division": "",
|
| 48 |
+
"heading": "General",
|
| 49 |
+
"history": "",
|
| 50 |
+
"last_amended": "2006-03-22",
|
| 51 |
+
"in_force": "2006-03-22",
|
| 52 |
+
"status": "in force",
|
| 53 |
+
"current_to": "2024-10-30",
|
| 54 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-98-58/section-3.html",
|
| 55 |
+
"id": "SOR-98-58-s3",
|
| 56 |
+
"text": "3 Where it is impracticable or impossible for the importer to export goods within the eighteen-month period referred to in paragraph (f) of tariff item No. 9993.00.00, the period is extended to\n(a) the day that occurs thirty days after the day on which it becomes practicable or possible to export the goods , or\n(b) the day that occurs thirty months after the expiry of the eighteen-month period,\nwhichever occurs first.",
|
| 57 |
+
"citation": "Returning Persons Exemption Regs, s. 3"
|
| 58 |
+
},
|
| 59 |
+
{
|
| 60 |
+
"act_code": "SOR-98-58",
|
| 61 |
+
"act_short": "Returning Persons Exemption Regs",
|
| 62 |
+
"act_name": "Returning Persons Exemption Regulations",
|
| 63 |
+
"section": "4",
|
| 64 |
+
"marginal_note": "",
|
| 65 |
+
"part": "",
|
| 66 |
+
"division": "",
|
| 67 |
+
"heading": "General",
|
| 68 |
+
"history": "SOR/2003-240, s. 2",
|
| 69 |
+
"last_amended": "2006-03-22",
|
| 70 |
+
"in_force": "2006-03-22",
|
| 71 |
+
"status": "in force",
|
| 72 |
+
"current_to": "2024-10-30",
|
| 73 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-98-58/section-4.html",
|
| 74 |
+
"id": "SOR-98-58-s4",
|
| 75 |
+
"text": "4 For the purposes of subparagraph (f)(iii) of tariff item No. 9993.00.00, goods shall be consumed or expended in one of the following circumstances:\n(a) in the course of responding to an emergency;\n(b) during the testing or examination of the goods for certification by an accredited organization; or\n(c) in the course of an emergency response training exercise.",
|
| 76 |
+
"citation": "Returning Persons Exemption Regs, s. 4"
|
| 77 |
+
},
|
| 78 |
+
{
|
| 79 |
+
"act_code": "SOR-98-58",
|
| 80 |
+
"act_short": "Returning Persons Exemption Regs",
|
| 81 |
+
"act_name": "Returning Persons Exemption Regulations",
|
| 82 |
+
"section": "5",
|
| 83 |
+
"marginal_note": "",
|
| 84 |
+
"part": "",
|
| 85 |
+
"division": "",
|
| 86 |
+
"heading": "Security",
|
| 87 |
+
"history": "SOR/2004-128, s. 2; SOR/2024-41, s. 68",
|
| 88 |
+
"last_amended": "2024-10-21",
|
| 89 |
+
"in_force": "2006-03-22",
|
| 90 |
+
"status": "in force",
|
| 91 |
+
"current_to": "2024-10-30",
|
| 92 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-98-58/section-5.html",
|
| 93 |
+
"id": "SOR-98-58-s5",
|
| 94 |
+
"text": "5\n(1) Subject to subsection (3), if goods referred to in section 2 are not accompanied by a valid carnet, the importer of the goods must give security in accordance with the requirements of the Financial Security (Electronic Means) Regulations and in an amount determined by the Minister in accordance with the conditions set out in tariff item No. 9993.00.00, to ensure\n(a) the exportation or destruction of the goods under that tariff item, within the eighteen-month period referred to in that tariff item or any extension of that time period under section 3; or\n(b) the payment of the customs duties that would be payable in respect of the goods pursuant to the Customs Tariff if the goods were classified under their applicable tariff item.\n(2) [Repealed, SOR/2024-41, s. 68]\n(3) No security in respect of customs duties is required\n(a) on originating goods;\n(b) on goods intended for display or demonstration at a convention or exhibition held in Canada by any level of government, in Canada or in a foreign state;\n(c) where the customs duties applicable on the goods are equal to or less than $100.00;\n(d) where there is evidence that the goods will be exported; or\n(e) on commercial samples and advertising films imported from the United States, Mexico, Chile or Costa Rica.",
|
| 95 |
+
"citation": "Returning Persons Exemption Regs, s. 5"
|
| 96 |
+
},
|
| 97 |
+
{
|
| 98 |
+
"act_code": "SOR-98-58",
|
| 99 |
+
"act_short": "Returning Persons Exemption Regs",
|
| 100 |
+
"act_name": "Returning Persons Exemption Regulations",
|
| 101 |
+
"section": "6",
|
| 102 |
+
"marginal_note": "",
|
| 103 |
+
"part": "",
|
| 104 |
+
"division": "",
|
| 105 |
+
"heading": "Security",
|
| 106 |
+
"history": "SOR/2003-240, s. 3",
|
| 107 |
+
"last_amended": "2006-03-22",
|
| 108 |
+
"in_force": "2006-03-22",
|
| 109 |
+
"status": "in force",
|
| 110 |
+
"current_to": "2024-10-30",
|
| 111 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-98-58/section-6.html",
|
| 112 |
+
"id": "SOR-98-58-s6",
|
| 113 |
+
"text": "6 Security given pursuant to subsection 5(1) shall be refunded or cancelled, as the case may be, where the goods in respect of which the security was given have been\n(a) the subject of a re-determination or a further re-determination of their tariff classification in accordance with the Customs Act and the duties applicable to the re-determination or further re-determination have been paid; or\n(b) before the expiration of the eighteen-month period referred to in paragraph (f) of tariff item No. 9993.00.00 or an extension of that period pursuant to section 3,\n(i) exported,\n(ii) destroyed and the destruction has been certified by a customs officer or by another person designated by the Minister in accordance with tariff item No. 9993.00.00, or\n(iii) consumed or expended in the circumstances prescribed in section 4.",
|
| 114 |
+
"citation": "Returning Persons Exemption Regs, s. 6"
|
| 115 |
+
},
|
| 116 |
+
{
|
| 117 |
+
"act_code": "SOR-98-58",
|
| 118 |
+
"act_short": "Returning Persons Exemption Regs",
|
| 119 |
+
"act_name": "Returning Persons Exemption Regulations",
|
| 120 |
+
"section": "7",
|
| 121 |
+
"marginal_note": "",
|
| 122 |
+
"part": "",
|
| 123 |
+
"division": "",
|
| 124 |
+
"heading": "Coming into Force",
|
| 125 |
+
"history": "",
|
| 126 |
+
"last_amended": "2006-03-22",
|
| 127 |
+
"in_force": "2006-03-22",
|
| 128 |
+
"status": "in force",
|
| 129 |
+
"current_to": "2024-10-30",
|
| 130 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/regulations/SOR-98-58/section-7.html",
|
| 131 |
+
"id": "SOR-98-58-s7",
|
| 132 |
+
"text": "7 These Regulations come into force on January 1, 1998.",
|
| 133 |
+
"citation": "Returning Persons Exemption Regs, s. 7"
|
| 134 |
+
}
|
| 135 |
+
]
|
|
@@ -0,0 +1,1123 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
[
|
| 2 |
+
{
|
| 3 |
+
"act_code": "W-8.5",
|
| 4 |
+
"act_short": "WAPPRIITA",
|
| 5 |
+
"act_name": "Wild Animal and Plant Protection and Regulation of International and Interprovincial Trade Act",
|
| 6 |
+
"section": "1",
|
| 7 |
+
"marginal_note": "Short title",
|
| 8 |
+
"part": "",
|
| 9 |
+
"division": "",
|
| 10 |
+
"heading": "Short Title",
|
| 11 |
+
"history": "",
|
| 12 |
+
"last_amended": "2002-12-31",
|
| 13 |
+
"in_force": "2002-12-31",
|
| 14 |
+
"status": "in force",
|
| 15 |
+
"current_to": "2019-06-21",
|
| 16 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/w-8.5/section-1.html",
|
| 17 |
+
"id": "W-8.5-s1",
|
| 18 |
+
"text": "1 This Act may be cited as the Wild Animal and Plant Protection and Regulation of International and Interprovincial Trade Act.",
|
| 19 |
+
"citation": "WAPPRIITA, s. 1"
|
| 20 |
+
},
|
| 21 |
+
{
|
| 22 |
+
"act_code": "W-8.5",
|
| 23 |
+
"act_short": "WAPPRIITA",
|
| 24 |
+
"act_name": "Wild Animal and Plant Protection and Regulation of International and Interprovincial Trade Act",
|
| 25 |
+
"section": "2",
|
| 26 |
+
"marginal_note": "Definitions",
|
| 27 |
+
"part": "",
|
| 28 |
+
"division": "",
|
| 29 |
+
"heading": "Interpretation",
|
| 30 |
+
"history": "",
|
| 31 |
+
"last_amended": "2002-12-31",
|
| 32 |
+
"in_force": "2002-12-31",
|
| 33 |
+
"status": "in force",
|
| 34 |
+
"current_to": "2019-06-21",
|
| 35 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/w-8.5/section-2.html",
|
| 36 |
+
"id": "W-8.5-s2",
|
| 37 |
+
"text": "2 In this Act,\nanimal means any specimen, whether living or dead, of any species of animal that is listed as “fauna” in an appendix to the Convention, and includes any egg, sperm, tissue culture or embryo of any such animal; (animal)\nConvention means the Convention on international trade in endangered species of wild fauna and flora, made on March 3, 1973 in Washington, D.C., United States and ratified by Canada on April 10, 1975, as amended from time to time, to the extent that the amendment is binding on Canada; (Convention)\nconveyance means any vehicle, aircraft or water-borne craft or any other contrivance that is used to move persons or goods; (moyen de transport)\ndistribute includes sell; (distribuer)\nMinister means the Minister of the Environment; (ministre)\nofficer means a person, or a person who belongs to a class of persons, designated pursuant to section 12; (agent)\nplant means any specimen, whether living or dead, of any species of plant that is listed as “flora” in an appendix to the Convention, and includes any seed, spore, pollen or tissue culture of any such plant; (végétal)\nprescribed means prescribed by regulation; (Version anglaise seulement)\ntransport includes send. (acheminer)",
|
| 38 |
+
"citation": "WAPPRIITA, s. 2"
|
| 39 |
+
},
|
| 40 |
+
{
|
| 41 |
+
"act_code": "W-8.5",
|
| 42 |
+
"act_short": "WAPPRIITA",
|
| 43 |
+
"act_name": "Wild Animal and Plant Protection and Regulation of International and Interprovincial Trade Act",
|
| 44 |
+
"section": "3",
|
| 45 |
+
"marginal_note": "Binding on Her Majesty",
|
| 46 |
+
"part": "",
|
| 47 |
+
"division": "",
|
| 48 |
+
"heading": "Binding on Her Majesty",
|
| 49 |
+
"history": "",
|
| 50 |
+
"last_amended": "2002-12-31",
|
| 51 |
+
"in_force": "2002-12-31",
|
| 52 |
+
"status": "in force",
|
| 53 |
+
"current_to": "2019-06-21",
|
| 54 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/w-8.5/section-3.html",
|
| 55 |
+
"id": "W-8.5-s3",
|
| 56 |
+
"text": "3 This Act is binding on Her Majesty in right of Canada or a province.",
|
| 57 |
+
"citation": "WAPPRIITA, s. 3"
|
| 58 |
+
},
|
| 59 |
+
{
|
| 60 |
+
"act_code": "W-8.5",
|
| 61 |
+
"act_short": "WAPPRIITA",
|
| 62 |
+
"act_name": "Wild Animal and Plant Protection and Regulation of International and Interprovincial Trade Act",
|
| 63 |
+
"section": "4",
|
| 64 |
+
"marginal_note": "Purpose",
|
| 65 |
+
"part": "",
|
| 66 |
+
"division": "",
|
| 67 |
+
"heading": "Purpose",
|
| 68 |
+
"history": "",
|
| 69 |
+
"last_amended": "2002-12-31",
|
| 70 |
+
"in_force": "2002-12-31",
|
| 71 |
+
"status": "in force",
|
| 72 |
+
"current_to": "2019-06-21",
|
| 73 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/w-8.5/section-4.html",
|
| 74 |
+
"id": "W-8.5-s4",
|
| 75 |
+
"text": "4 The purpose of this Act is to protect certain species of animals and plants, particularly by implementing the Convention and regulating international and interprovincial trade in animals and plants.",
|
| 76 |
+
"citation": "WAPPRIITA, s. 4"
|
| 77 |
+
},
|
| 78 |
+
{
|
| 79 |
+
"act_code": "W-8.5",
|
| 80 |
+
"act_short": "WAPPRIITA",
|
| 81 |
+
"act_name": "Wild Animal and Plant Protection and Regulation of International and Interprovincial Trade Act",
|
| 82 |
+
"section": "5",
|
| 83 |
+
"marginal_note": "Federal-provincial agreements",
|
| 84 |
+
"part": "",
|
| 85 |
+
"division": "",
|
| 86 |
+
"heading": "Agreements",
|
| 87 |
+
"history": "",
|
| 88 |
+
"last_amended": "2002-12-31",
|
| 89 |
+
"in_force": "2002-12-31",
|
| 90 |
+
"status": "in force",
|
| 91 |
+
"current_to": "2019-06-21",
|
| 92 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/w-8.5/section-5.html",
|
| 93 |
+
"id": "W-8.5-s5",
|
| 94 |
+
"text": "5 The Minister may enter into an agreement with the government of any province to provide for the cooperative management and administration of this Act and to avoid conflict between, and duplication in, federal and provincial regulatory activity.",
|
| 95 |
+
"citation": "WAPPRIITA, s. 5"
|
| 96 |
+
},
|
| 97 |
+
{
|
| 98 |
+
"act_code": "W-8.5",
|
| 99 |
+
"act_short": "WAPPRIITA",
|
| 100 |
+
"act_name": "Wild Animal and Plant Protection and Regulation of International and Interprovincial Trade Act",
|
| 101 |
+
"section": "6",
|
| 102 |
+
"marginal_note": "Importation",
|
| 103 |
+
"part": "",
|
| 104 |
+
"division": "",
|
| 105 |
+
"heading": "Prohibitions",
|
| 106 |
+
"history": "",
|
| 107 |
+
"last_amended": "2002-12-31",
|
| 108 |
+
"in_force": "2002-12-31",
|
| 109 |
+
"status": "in force",
|
| 110 |
+
"current_to": "2019-06-21",
|
| 111 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/w-8.5/section-6.html",
|
| 112 |
+
"id": "W-8.5-s6",
|
| 113 |
+
"text": "6\n(1) No person shall import into Canada any animal or plant that was taken, or any animal or plant, or any part or derivative of an animal or plant, that was possessed, distributed or transported in contravention of any law of any foreign state.\n(2) [Importation and exportation] Subject to the regulations, no person shall, except under and in accordance with a permit issued pursuant to subsection 10(1), import into Canada or export from Canada any animal or plant, or any part or derivative of an animal or plant.\n(3) [Interprovincial transport] Subject to the regulations, no person shall, except under and in accordance with a permit issued pursuant to subsection 10(1), transport from one province to another province any animal or plant, or any part or derivative of an animal or plant.",
|
| 114 |
+
"citation": "WAPPRIITA, s. 6"
|
| 115 |
+
},
|
| 116 |
+
{
|
| 117 |
+
"act_code": "W-8.5",
|
| 118 |
+
"act_short": "WAPPRIITA",
|
| 119 |
+
"act_name": "Wild Animal and Plant Protection and Regulation of International and Interprovincial Trade Act",
|
| 120 |
+
"section": "7",
|
| 121 |
+
"marginal_note": "Transport requiring provincial authorization",
|
| 122 |
+
"part": "",
|
| 123 |
+
"division": "",
|
| 124 |
+
"heading": "Prohibitions",
|
| 125 |
+
"history": "",
|
| 126 |
+
"last_amended": "2002-12-31",
|
| 127 |
+
"in_force": "2002-12-31",
|
| 128 |
+
"status": "in force",
|
| 129 |
+
"current_to": "2019-06-21",
|
| 130 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/w-8.5/section-7.html",
|
| 131 |
+
"id": "W-8.5-s7",
|
| 132 |
+
"text": "7\n(1) Where the transportation out of a province of an animal or plant, or any part or derivative of an animal or plant, is permitted by the province only if the person who transports it holds a permit issued by a competent authority in that province, no person shall, except under and in accordance with such a permit, transport any animal, plant or part or derivative of an animal or plant from that province to another province.\n(2) [Provincial prohibitions] No person shall transport from a province to another province any animal or plant, or any part or derivative of an animal or plant, where the animal or plant was taken, or the animal, plant, part or derivative was possessed, distributed or transported, in contravention of any provincial Act or regulation.",
|
| 133 |
+
"citation": "WAPPRIITA, s. 7"
|
| 134 |
+
},
|
| 135 |
+
{
|
| 136 |
+
"act_code": "W-8.5",
|
| 137 |
+
"act_short": "WAPPRIITA",
|
| 138 |
+
"act_name": "Wild Animal and Plant Protection and Regulation of International and Interprovincial Trade Act",
|
| 139 |
+
"section": "8",
|
| 140 |
+
"marginal_note": "Possession",
|
| 141 |
+
"part": "",
|
| 142 |
+
"division": "",
|
| 143 |
+
"heading": "Prohibitions",
|
| 144 |
+
"history": "",
|
| 145 |
+
"last_amended": "2002-12-31",
|
| 146 |
+
"in_force": "2002-12-31",
|
| 147 |
+
"status": "in force",
|
| 148 |
+
"current_to": "2019-06-21",
|
| 149 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/w-8.5/section-8.html",
|
| 150 |
+
"id": "W-8.5-s8",
|
| 151 |
+
"text": "8 Subject to the regulations, no person shall knowingly possess an animal or plant, or any part or derivative of an animal or plant,\n(a) that has been imported or transported in contravention of this Act;\n(b) for the purpose of transporting it from one province to another province in contravention of this Act or exporting it from Canada in contravention of this Act; or\n(c) for the purpose of distributing or offering to distribute it if the animal or plant, or the animal or plant from which the part or derivative comes, is listed in Appendix I to the Convention.",
|
| 152 |
+
"citation": "WAPPRIITA, s. 8"
|
| 153 |
+
},
|
| 154 |
+
{
|
| 155 |
+
"act_code": "W-8.5",
|
| 156 |
+
"act_short": "WAPPRIITA",
|
| 157 |
+
"act_name": "Wild Animal and Plant Protection and Regulation of International and Interprovincial Trade Act",
|
| 158 |
+
"section": "9",
|
| 159 |
+
"marginal_note": "Documents",
|
| 160 |
+
"part": "",
|
| 161 |
+
"division": "",
|
| 162 |
+
"heading": "Prohibitions",
|
| 163 |
+
"history": "",
|
| 164 |
+
"last_amended": "2002-12-31",
|
| 165 |
+
"in_force": "2002-12-31",
|
| 166 |
+
"status": "in force",
|
| 167 |
+
"current_to": "2019-06-21",
|
| 168 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/w-8.5/section-9.html",
|
| 169 |
+
"id": "W-8.5-s9",
|
| 170 |
+
"text": "9 Every person who imports into Canada, exports from Canada or transports from one province to another province an animal or plant, or any part or derivative of an animal or plant, shall keep in Canada, in the prescribed manner and for the prescribed period, any documents that are required to be kept by the regulations.",
|
| 171 |
+
"citation": "WAPPRIITA, s. 9"
|
| 172 |
+
},
|
| 173 |
+
{
|
| 174 |
+
"act_code": "W-8.5",
|
| 175 |
+
"act_short": "WAPPRIITA",
|
| 176 |
+
"act_name": "Wild Animal and Plant Protection and Regulation of International and Interprovincial Trade Act",
|
| 177 |
+
"section": "10",
|
| 178 |
+
"marginal_note": "Issuance",
|
| 179 |
+
"part": "",
|
| 180 |
+
"division": "",
|
| 181 |
+
"heading": "Federal Permits",
|
| 182 |
+
"history": "1992, c. 52, s. 10; 2002, c. 29, s. 139",
|
| 183 |
+
"last_amended": "2003-03-24",
|
| 184 |
+
"in_force": "2003-03-24",
|
| 185 |
+
"status": "in force",
|
| 186 |
+
"current_to": "2019-06-21",
|
| 187 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/w-8.5/section-10.html",
|
| 188 |
+
"id": "W-8.5-s10",
|
| 189 |
+
"text": "10\n(1) The Minister may, on application and on such terms and conditions as the Minister thinks fit, issue a permit authorizing the importation, exportation or interprovincial transportation of an animal or plant, or any part or derivative of an animal or plant.\n(2) [Application for permit] An application shall be made in the form and on the terms and conditions that the Minister requires, contain all the information that the Minister requires and be accompanied by the prescribed fees.\n(3) [Revocation or suspension] The Minister may, after giving a person who holds a permit an opportunity to make representations, revoke or suspend the permit for contravention of any term or condition of the permit.\n(4) [Delegation by Minister] The Minister may delegate to any minister of the Crown in right of Canada or of a province or to any person who is employed by the Government of Canada, the government of a province or any other government in Canada any power conferred on the Minister under this section relating to permits. The minister or other person to whom the power is delegated may then exercise the power subject to any terms and conditions that the Minister specifies.",
|
| 190 |
+
"citation": "WAPPRIITA, s. 10"
|
| 191 |
+
},
|
| 192 |
+
{
|
| 193 |
+
"act_code": "W-8.5",
|
| 194 |
+
"act_short": "WAPPRIITA",
|
| 195 |
+
"act_name": "Wild Animal and Plant Protection and Regulation of International and Interprovincial Trade Act",
|
| 196 |
+
"section": "11",
|
| 197 |
+
"marginal_note": "Misrepresentation",
|
| 198 |
+
"part": "",
|
| 199 |
+
"division": "",
|
| 200 |
+
"heading": "Federal Permits",
|
| 201 |
+
"history": "",
|
| 202 |
+
"last_amended": "2002-12-31",
|
| 203 |
+
"in_force": "2002-12-31",
|
| 204 |
+
"status": "in force",
|
| 205 |
+
"current_to": "2019-06-21",
|
| 206 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/w-8.5/section-11.html",
|
| 207 |
+
"id": "W-8.5-s11",
|
| 208 |
+
"text": "11 No person shall knowingly furnish any false or misleading information or make any misrepresentation with respect to any matter in this Act.",
|
| 209 |
+
"citation": "WAPPRIITA, s. 11"
|
| 210 |
+
},
|
| 211 |
+
{
|
| 212 |
+
"act_code": "W-8.5",
|
| 213 |
+
"act_short": "WAPPRIITA",
|
| 214 |
+
"act_name": "Wild Animal and Plant Protection and Regulation of International and Interprovincial Trade Act",
|
| 215 |
+
"section": "12",
|
| 216 |
+
"marginal_note": "Officers and analysts",
|
| 217 |
+
"part": "",
|
| 218 |
+
"division": "",
|
| 219 |
+
"heading": "Administration",
|
| 220 |
+
"history": "1992, c. 52, s. 12; 2009, c. 14, s. 116",
|
| 221 |
+
"last_amended": "2010-12-10",
|
| 222 |
+
"in_force": "2010-12-10",
|
| 223 |
+
"status": "in force",
|
| 224 |
+
"current_to": "2019-06-21",
|
| 225 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/w-8.5/section-12.html",
|
| 226 |
+
"id": "W-8.5-s12",
|
| 227 |
+
"text": "12\n(1) The Minister may designate such persons or classes of persons as the Minister considers necessary to act as officers or analysts for the purposes of this Act or any provision of this Act, and if the person to be designated is an employee, or the class of persons to be designated consists of employees, of the government of a province, the Minister shall only designate that person or class with the agreement of that government.\n(2) [Powers of peace officers] Officers designated under subsection (1) have, for the purposes of this Act, all the powers of a peace officer, but the Minister may limit, in any manner the Minister considers appropriate, the powers that certain officers may exercise for the purposes of this Act and, where those powers are so limited, they shall be specified in the certificate referred to in subsection (3).\n(3) [Certificate to be shown] On entering any place under this Act, an officer or analyst shall, on request, show the person in charge or the occupant of the place a certificate, in the form approved by the Minister, certifying that the officer or analyst, as the case may be, has been designated under this section.\n(4) [Obstruction] No person shall knowingly make any false or misleading statement either orally or in writing to, or obstruct or hinder, an officer or analyst who is carrying out duties or functions under this Act or the regulations.\n(5) [Immunity] Officers and analysts are not personally liable for anything they do or omit to do in good faith under this Act.",
|
| 228 |
+
"citation": "WAPPRIITA, s. 12"
|
| 229 |
+
},
|
| 230 |
+
{
|
| 231 |
+
"act_code": "W-8.5",
|
| 232 |
+
"act_short": "WAPPRIITA",
|
| 233 |
+
"act_name": "Wild Animal and Plant Protection and Regulation of International and Interprovincial Trade Act",
|
| 234 |
+
"section": "12.1",
|
| 235 |
+
"marginal_note": "Documents admissible in evidence",
|
| 236 |
+
"part": "",
|
| 237 |
+
"division": "",
|
| 238 |
+
"heading": "Administration",
|
| 239 |
+
"history": "2009, c. 14, s. 116.1",
|
| 240 |
+
"last_amended": "2010-12-10",
|
| 241 |
+
"in_force": "2010-12-10",
|
| 242 |
+
"status": "in force",
|
| 243 |
+
"current_to": "2019-06-21",
|
| 244 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/w-8.5/section-12.1.html",
|
| 245 |
+
"id": "W-8.5-s12.1",
|
| 246 |
+
"text": "12.1\n(1) A document made, given or issued under this Act and appearing to be signed by an analyst is admissible in evidence and, in the absence of evidence to the contrary, is proof of the statements contained in the document without proof of the signature or official character of the person appearing to have signed the document.\n(2) [Attendance of analyst] The party against whom the document is produced may, with leave of the court, require the attendance of the analyst who signed it.\n(3) [Notice] No document referred to in subsection (1) may be received in evidence unless the party intending to produce it has given to the party against whom it is intended to be produced reasonable notice of that intention together with a copy of the document.",
|
| 247 |
+
"citation": "WAPPRIITA, s. 12.1"
|
| 248 |
+
},
|
| 249 |
+
{
|
| 250 |
+
"act_code": "W-8.5",
|
| 251 |
+
"act_short": "WAPPRIITA",
|
| 252 |
+
"act_name": "Wild Animal and Plant Protection and Regulation of International and Interprovincial Trade Act",
|
| 253 |
+
"section": "13",
|
| 254 |
+
"marginal_note": "Detention",
|
| 255 |
+
"part": "",
|
| 256 |
+
"division": "",
|
| 257 |
+
"heading": "Administration",
|
| 258 |
+
"history": "",
|
| 259 |
+
"last_amended": "2002-12-31",
|
| 260 |
+
"in_force": "2002-12-31",
|
| 261 |
+
"status": "in force",
|
| 262 |
+
"current_to": "2019-06-21",
|
| 263 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/w-8.5/section-13.html",
|
| 264 |
+
"id": "W-8.5-s13",
|
| 265 |
+
"text": "13 Any thing that has been imported into or is about to be exported from Canada, or has been transported, or is about to be transported, from a province to another province, may be detained by an officer until the officer is satisfied that the thing has been dealt with in accordance with this Act and the regulations.",
|
| 266 |
+
"citation": "WAPPRIITA, s. 13"
|
| 267 |
+
},
|
| 268 |
+
{
|
| 269 |
+
"act_code": "W-8.5",
|
| 270 |
+
"act_short": "WAPPRIITA",
|
| 271 |
+
"act_name": "Wild Animal and Plant Protection and Regulation of International and Interprovincial Trade Act",
|
| 272 |
+
"section": "14",
|
| 273 |
+
"marginal_note": "Inspections",
|
| 274 |
+
"part": "",
|
| 275 |
+
"division": "",
|
| 276 |
+
"heading": "Administration",
|
| 277 |
+
"history": "1992, c. 52, s. 14; 2009, c. 14, s. 117",
|
| 278 |
+
"last_amended": "2010-12-10",
|
| 279 |
+
"in_force": "2010-12-10",
|
| 280 |
+
"status": "in force",
|
| 281 |
+
"current_to": "2019-06-21",
|
| 282 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/w-8.5/section-14.html",
|
| 283 |
+
"id": "W-8.5-s14",
|
| 284 |
+
"text": "14\n(1) For the purpose of ensuring compliance with this Act and the regulations, an officer may at any reasonable time enter and inspect any place in which the officer believes, on reasonable grounds, there is any thing to which this Act applies, or there are any documents relating to the administration of this Act or the regulations, and the officer may\n(a) open or cause to be opened any container that the officer believes, on reasonable grounds, contains such a thing;\n(b) inspect any such thing and take samples free of charge;\n(c) require any person to produce for inspection or copying, in whole or in part, any document that the officer believes, on reasonable grounds, contains any information relevant to the administration of this Act or the regulations; and\n(d) seize any thing by means of or in relation to which the officer believes, on reasonable grounds, this Act or the regulations have been contravened or that the officer believes, on reasonable grounds, will afford evidence of a contravention of this Act or the regulations.\n(1.1) [Analysts] An analyst may, for the purposes of this Act, accompany an officer who is carrying out an inspection of a place under this section, and the analyst may, when accompanying the officer, enter the place and exercise any of the powers described in paragraphs (1)(a) and (b).\n(2) [Conveyance] For the purposes of carrying out the inspection, an officer may stop a conveyance or direct that it be moved by the route and in the manner that the officer may specify, to a place specified by the officer where the inspection can be carried out.\n(3) [Dwelling-place] An officer may not enter a dwelling-place except with the consent of the occupant or under the authority of a warrant issued under subsection (4).\n(4) [Warrant] Where on ex parte application a justice of the peace is satisfied by information on oath that\n(a) the conditions for entry described in subsection (1) exist in relation to a dwelling-place,\n(b) entry to the dwelling-place is necessary for any purpose in relation 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 for believing that entry will be refused,\nthe justice may issue a warrant authorizing an officer to enter the dwelling-place subject to any conditions that may be specified in the warrant.",
|
| 285 |
+
"citation": "WAPPRIITA, s. 14"
|
| 286 |
+
},
|
| 287 |
+
{
|
| 288 |
+
"act_code": "W-8.5",
|
| 289 |
+
"act_short": "WAPPRIITA",
|
| 290 |
+
"act_name": "Wild Animal and Plant Protection and Regulation of International and Interprovincial Trade Act",
|
| 291 |
+
"section": "14.1",
|
| 292 |
+
"marginal_note": "Right of passage",
|
| 293 |
+
"part": "",
|
| 294 |
+
"division": "",
|
| 295 |
+
"heading": "Administration",
|
| 296 |
+
"history": "2009, c. 14, s. 118",
|
| 297 |
+
"last_amended": "2010-12-10",
|
| 298 |
+
"in_force": "2010-12-10",
|
| 299 |
+
"status": "in force",
|
| 300 |
+
"current_to": "2019-06-21",
|
| 301 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/w-8.5/section-14.1.html",
|
| 302 |
+
"id": "W-8.5-s14.1",
|
| 303 |
+
"text": "14.1 While carrying out duties or functions under this Act, officers and analysts, and any persons accompanying them, may enter on and pass through or over private property without being liable for doing so and without any person having the right to object to that use of the property.",
|
| 304 |
+
"citation": "WAPPRIITA, s. 14.1"
|
| 305 |
+
},
|
| 306 |
+
{
|
| 307 |
+
"act_code": "W-8.5",
|
| 308 |
+
"act_short": "WAPPRIITA",
|
| 309 |
+
"act_name": "Wild Animal and Plant Protection and Regulation of International and Interprovincial Trade Act",
|
| 310 |
+
"section": "14.2",
|
| 311 |
+
"marginal_note": "Assistance",
|
| 312 |
+
"part": "",
|
| 313 |
+
"division": "",
|
| 314 |
+
"heading": "Administration",
|
| 315 |
+
"history": "2009, c. 14, s. 118",
|
| 316 |
+
"last_amended": "2010-12-10",
|
| 317 |
+
"in_force": "2010-12-10",
|
| 318 |
+
"status": "in force",
|
| 319 |
+
"current_to": "2019-06-21",
|
| 320 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/w-8.5/section-14.2.html",
|
| 321 |
+
"id": "W-8.5-s14.2",
|
| 322 |
+
"text": "14.2 The owner or person in charge of a place being inspected under section 14, and every person found in the place, shall\n(a) give the officer or analyst all reasonable assistance to enable the officer or analyst to carry out their duties or functions under this Act; and\n(b) provide the officer or analyst with any information with respect to the administration of this Act that he or she may reasonably require.",
|
| 323 |
+
"citation": "WAPPRIITA, s. 14.2"
|
| 324 |
+
},
|
| 325 |
+
{
|
| 326 |
+
"act_code": "W-8.5",
|
| 327 |
+
"act_short": "WAPPRIITA",
|
| 328 |
+
"act_name": "Wild Animal and Plant Protection and Regulation of International and Interprovincial Trade Act",
|
| 329 |
+
"section": "15",
|
| 330 |
+
"marginal_note": "Search without warrant",
|
| 331 |
+
"part": "",
|
| 332 |
+
"division": "",
|
| 333 |
+
"heading": "Administration",
|
| 334 |
+
"history": "",
|
| 335 |
+
"last_amended": "2002-12-31",
|
| 336 |
+
"in_force": "2002-12-31",
|
| 337 |
+
"status": "in force",
|
| 338 |
+
"current_to": "2019-06-21",
|
| 339 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/w-8.5/section-15.html",
|
| 340 |
+
"id": "W-8.5-s15",
|
| 341 |
+
"text": "15 For the purpose of ensuring compliance with this Act and the regulations, an officer may exercise the powers of search and seizure provided for in section 487 of the Criminal Code without a warrant if the conditions for obtaining a warrant exist but, by reason of exigent circumstances, it would not be feasible to obtain a warrant.",
|
| 342 |
+
"citation": "WAPPRIITA, s. 15"
|
| 343 |
+
},
|
| 344 |
+
{
|
| 345 |
+
"act_code": "W-8.5",
|
| 346 |
+
"act_short": "WAPPRIITA",
|
| 347 |
+
"act_name": "Wild Animal and Plant Protection and Regulation of International and Interprovincial Trade Act",
|
| 348 |
+
"section": "16",
|
| 349 |
+
"marginal_note": "Custody of things seized",
|
| 350 |
+
"part": "",
|
| 351 |
+
"division": "",
|
| 352 |
+
"heading": "Administration",
|
| 353 |
+
"history": "",
|
| 354 |
+
"last_amended": "2002-12-31",
|
| 355 |
+
"in_force": "2002-12-31",
|
| 356 |
+
"status": "in force",
|
| 357 |
+
"current_to": "2019-06-21",
|
| 358 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/w-8.5/section-16.html",
|
| 359 |
+
"id": "W-8.5-s16",
|
| 360 |
+
"text": "16\n(1) An officer who detains or seizes a thing under section 13, 14 or 15 or under a warrant issued under the Criminal Code may retain custody of the thing or transfer custody of it to such person as the officer may designate.\n(2) [Perishable things] Where a thing referred to in subsection (1) is perishable, the officer may dispose of it or destroy it and any proceeds realized from its disposition shall be paid to the lawful owner of the thing unless proceedings under this Act are instituted within ninety days after the detention or seizure.",
|
| 361 |
+
"citation": "WAPPRIITA, s. 16"
|
| 362 |
+
},
|
| 363 |
+
{
|
| 364 |
+
"act_code": "W-8.5",
|
| 365 |
+
"act_short": "WAPPRIITA",
|
| 366 |
+
"act_name": "Wild Animal and Plant Protection and Regulation of International and Interprovincial Trade Act",
|
| 367 |
+
"section": "17",
|
| 368 |
+
"marginal_note": "Abandonment",
|
| 369 |
+
"part": "",
|
| 370 |
+
"division": "",
|
| 371 |
+
"heading": "Administration",
|
| 372 |
+
"history": "",
|
| 373 |
+
"last_amended": "2002-12-31",
|
| 374 |
+
"in_force": "2002-12-31",
|
| 375 |
+
"status": "in force",
|
| 376 |
+
"current_to": "2019-06-21",
|
| 377 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/w-8.5/section-17.html",
|
| 378 |
+
"id": "W-8.5-s17",
|
| 379 |
+
"text": "17 The owner, importer or exporter of any thing detained or seized under this Act may abandon the thing to Her Majesty in right of Canada.",
|
| 380 |
+
"citation": "WAPPRIITA, s. 17"
|
| 381 |
+
},
|
| 382 |
+
{
|
| 383 |
+
"act_code": "W-8.5",
|
| 384 |
+
"act_short": "WAPPRIITA",
|
| 385 |
+
"act_name": "Wild Animal and Plant Protection and Regulation of International and Interprovincial Trade Act",
|
| 386 |
+
"section": "18",
|
| 387 |
+
"marginal_note": "Notice to remove",
|
| 388 |
+
"part": "",
|
| 389 |
+
"division": "",
|
| 390 |
+
"heading": "Administration",
|
| 391 |
+
"history": "",
|
| 392 |
+
"last_amended": "2002-12-31",
|
| 393 |
+
"in_force": "2002-12-31",
|
| 394 |
+
"status": "in force",
|
| 395 |
+
"current_to": "2019-06-21",
|
| 396 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/w-8.5/section-18.html",
|
| 397 |
+
"id": "W-8.5-s18",
|
| 398 |
+
"text": "18\n(1) Where an officer believes, on reasonable grounds, that any thing is being or has been imported into Canada in contravention of this Act or the regulations, the officer may, whether or not the thing is detained or seized, require, by delivering a notice in the prescribed form and manner, that it be removed from Canada in accordance with the regulations.\n(2) [Deadline for removal] Where a notice to remove a thing is delivered, the removal shall be carried out within the period specified in the notice or, if no such period is specified in the notice, within ninety days after its delivery.",
|
| 399 |
+
"citation": "WAPPRIITA, s. 18"
|
| 400 |
+
},
|
| 401 |
+
{
|
| 402 |
+
"act_code": "W-8.5",
|
| 403 |
+
"act_short": "WAPPRIITA",
|
| 404 |
+
"act_name": "Wild Animal and Plant Protection and Regulation of International and Interprovincial Trade Act",
|
| 405 |
+
"section": "19",
|
| 406 |
+
"marginal_note": "Forfeiture",
|
| 407 |
+
"part": "",
|
| 408 |
+
"division": "",
|
| 409 |
+
"heading": "Administration",
|
| 410 |
+
"history": "",
|
| 411 |
+
"last_amended": "2002-12-31",
|
| 412 |
+
"in_force": "2002-12-31",
|
| 413 |
+
"status": "in force",
|
| 414 |
+
"current_to": "2019-06-21",
|
| 415 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/w-8.5/section-19.html",
|
| 416 |
+
"id": "W-8.5-s19",
|
| 417 |
+
"text": "19\n(1) Where a person is convicted of an offence under this Act, the convicting court may, in addition to any punishment imposed, order that any thing detained or seized, or any proceeds realized from its disposition, be forfeited to Her Majesty.\n(2) [Forfeiture on consent] Where the owner of a thing detained or seized under this Act consents to its forfeiture, it is thereupon forfeited to Her Majesty.\n(3) [Automatic forfeiture] Where a thing is detained or seized under this Act, it, or the proceeds realized from its disposition, is forfeited to Her Majesty\n(a) in the case of a thing that has been detained under section 13, if the thing has not been removed within the period prescribed by the regulations;\n(b) in the case of a thing that has been seized, if ownership of the thing cannot be ascertained within thirty days after the seizure; and\n(c) in the case of a thing that is the subject of a notice under section 18, if the thing has not been removed from Canada in compliance with that section.\n(4) [Return of thing where no forfeiture ordered] Where the convicting court does not order the forfeiture of a detained or seized thing under subsection (1), the thing, or the proceeds realized from its disposition, shall be returned to the lawful owner of the thing or the person in whose possession the thing was at the time of the detention or seizure.\n(5) [Exception] Where a person is convicted of an offence under this Act, any thing seized or any proceeds realized from its disposition, may be retained until the fine is paid or the thing may be sold under execution in satisfaction of the fine and the proceeds applied, in whole or in part, in payment of the fine.",
|
| 418 |
+
"citation": "WAPPRIITA, s. 19"
|
| 419 |
+
},
|
| 420 |
+
{
|
| 421 |
+
"act_code": "W-8.5",
|
| 422 |
+
"act_short": "WAPPRIITA",
|
| 423 |
+
"act_name": "Wild Animal and Plant Protection and Regulation of International and Interprovincial Trade Act",
|
| 424 |
+
"section": "20",
|
| 425 |
+
"marginal_note": "Disposition by Minister",
|
| 426 |
+
"part": "",
|
| 427 |
+
"division": "",
|
| 428 |
+
"heading": "Administration",
|
| 429 |
+
"history": "1992, c. 52, s. 20; 2009, c. 14, s. 119",
|
| 430 |
+
"last_amended": "2010-12-10",
|
| 431 |
+
"in_force": "2010-12-10",
|
| 432 |
+
"status": "in force",
|
| 433 |
+
"current_to": "2019-06-21",
|
| 434 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/w-8.5/section-20.html",
|
| 435 |
+
"id": "W-8.5-s20",
|
| 436 |
+
"text": "20\n(1) Where a sample has been taken pursuant to paragraph 14(1)(b) or a thing has been forfeited or abandoned under this Act, it shall be dealt with and disposed of as the Minister may direct.\n(2) [Repealed, 2009, c. 14, s. 119]",
|
| 437 |
+
"citation": "WAPPRIITA, s. 20"
|
| 438 |
+
},
|
| 439 |
+
{
|
| 440 |
+
"act_code": "W-8.5",
|
| 441 |
+
"act_short": "WAPPRIITA",
|
| 442 |
+
"act_name": "Wild Animal and Plant Protection and Regulation of International and Interprovincial Trade Act",
|
| 443 |
+
"section": "20.1",
|
| 444 |
+
"marginal_note": "Liability for costs",
|
| 445 |
+
"part": "",
|
| 446 |
+
"division": "",
|
| 447 |
+
"heading": "Administration",
|
| 448 |
+
"history": "2009, c. 14, s. 120",
|
| 449 |
+
"last_amended": "2010-12-10",
|
| 450 |
+
"in_force": "2010-12-10",
|
| 451 |
+
"status": "in force",
|
| 452 |
+
"current_to": "2019-06-21",
|
| 453 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/w-8.5/section-20.1.html",
|
| 454 |
+
"id": "W-8.5-s20.1",
|
| 455 |
+
"text": "20.1 If a thing is seized under this Act or under a warrant issued under the Criminal Code, the importer or exporter, as the case may be, and the person who owned the thing at the time it was seized, the person who had charge or control of the thing immediately before it was seized and the person who possessed it immediately before it was seized are jointly and severally, or solidarily, liable for all the costs of seizure, detention, maintenance and forfeiture, including any destruction or disposal costs, incurred by Her Majesty in right of Canada in relation to the thing in excess of any proceeds of its disposition, if any.",
|
| 456 |
+
"citation": "WAPPRIITA, s. 20.1"
|
| 457 |
+
},
|
| 458 |
+
{
|
| 459 |
+
"act_code": "W-8.5",
|
| 460 |
+
"act_short": "WAPPRIITA",
|
| 461 |
+
"act_name": "Wild Animal and Plant Protection and Regulation of International and Interprovincial Trade Act",
|
| 462 |
+
"section": "21",
|
| 463 |
+
"marginal_note": "Regulations",
|
| 464 |
+
"part": "",
|
| 465 |
+
"division": "",
|
| 466 |
+
"heading": "Administration",
|
| 467 |
+
"history": "1992, c. 52, s. 21; 2002, c. 29, s. 140; 2009, c. 14, s. 121",
|
| 468 |
+
"last_amended": "2017-07-12",
|
| 469 |
+
"in_force": "2017-07-12",
|
| 470 |
+
"status": "in force",
|
| 471 |
+
"current_to": "2019-06-21",
|
| 472 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/w-8.5/section-21.html",
|
| 473 |
+
"id": "W-8.5-s21-p1",
|
| 474 |
+
"text": "21\n(1) The Governor in Council may make regulations for carrying out the purposes of this Act, including regulations\n(a) respecting the issuance, renewal, revocation and suspension of permits and the circumstances in which persons may be exempted from holding such permits;\n(b) respecting the exemption of animals and plants, and parts and derivatives of animals and plants, from the operation of any provision of this Act;\n(c) amending the definitions animal and plant\n(i) for the purposes of subsection 6(1),\n(ii) for the purposes of subsection 6(2),\n(iii) for the purposes of subsection 6(3),\n(A) in order to protect species that are subject to the legislative authority of Parliament, or\n(B) at the request of the minister who is responsible for the protection of wild animal or plant species of the government of the province into which the animal or plant is to be transported, where that minister is of the opinion that the transport would be harmful to the environment of that province,\n(iv) for the purposes of section 7, in order to protect species of animals and plants in a province, other than those species that are subject to the legislative authority of Parliament, at the request of the minister who is responsible for the protection of wild animal or plant species of the government of the province, and\n(v) for the purposes of section 8;\n(d) specifying the places and times at which, and the manner in which, animals and plants, classes of animals and plants and parts and derivatives of animals and plants may be imported into Canada and exported from Canada;",
|
| 475 |
+
"citation": "WAPPRIITA, s. 21 (part 1 of 2)"
|
| 476 |
+
},
|
| 477 |
+
{
|
| 478 |
+
"act_code": "W-8.5",
|
| 479 |
+
"act_short": "WAPPRIITA",
|
| 480 |
+
"act_name": "Wild Animal and Plant Protection and Regulation of International and Interprovincial Trade Act",
|
| 481 |
+
"section": "21",
|
| 482 |
+
"marginal_note": "Regulations",
|
| 483 |
+
"part": "",
|
| 484 |
+
"division": "",
|
| 485 |
+
"heading": "Administration",
|
| 486 |
+
"history": "1992, c. 52, s. 21; 2002, c. 29, s. 140; 2009, c. 14, s. 121",
|
| 487 |
+
"last_amended": "2017-07-12",
|
| 488 |
+
"in_force": "2017-07-12",
|
| 489 |
+
"status": "in force",
|
| 490 |
+
"current_to": "2019-06-21",
|
| 491 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/w-8.5/section-21.html",
|
| 492 |
+
"id": "W-8.5-s21-p2",
|
| 493 |
+
"text": "(e) respecting the marking of animals and plants, and parts and derivatives of animals and plants, and the packaging for animals, plants and parts and derivatives of animals and plants for importation into or exportation from Canada or for transportation from one province to another province;\n(f) prescribing the documents to be kept by persons mentioned in section 9 and the manner of keeping the documents and the period for which they are to be kept;\n(g) specifying the terms and conditions under which animals and plants, and parts and derivatives of animals and plants, are to be removed from Canada under section 18;\n(g.1) designating provisions of the regulations for the purposes of paragraph 22(1)(b);\n(h) prescribing the manner in which the proceeds resulting from the payment of fines or the execution of orders under this Act shall be distributed;\n(i) prescribing the fees or charges to be paid in connection with the administration of this Act and the terms and conditions of paying such fees and charges; and\n(j) generally to implement the Convention.\n(2) [Idem] The Governor in Council shall make regulations specifying the animals and plants that are listed as “fauna” and “flora”, respectively, in an appendix to the Convention and shall, not later than ninety days after any change to a list in an appendix to the Convention, amend the regulations to reflect that change.",
|
| 494 |
+
"citation": "WAPPRIITA, s. 21 (part 2 of 2)"
|
| 495 |
+
},
|
| 496 |
+
{
|
| 497 |
+
"act_code": "W-8.5",
|
| 498 |
+
"act_short": "WAPPRIITA",
|
| 499 |
+
"act_name": "Wild Animal and Plant Protection and Regulation of International and Interprovincial Trade Act",
|
| 500 |
+
"section": "21.1",
|
| 501 |
+
"marginal_note": "Order",
|
| 502 |
+
"part": "",
|
| 503 |
+
"division": "",
|
| 504 |
+
"heading": "Administration",
|
| 505 |
+
"history": "2002, c. 29, s. 141",
|
| 506 |
+
"last_amended": "2003-03-24",
|
| 507 |
+
"in_force": "2003-03-24",
|
| 508 |
+
"status": "in force",
|
| 509 |
+
"current_to": "2019-06-21",
|
| 510 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/w-8.5/section-21.1.html",
|
| 511 |
+
"id": "W-8.5-s21.1",
|
| 512 |
+
"text": "21.1\n(1) The Governor in Council may, on the recommendation of the Minister, by order, amend the definition animal or plant in section 2 for the purposes of subsection 6(2).\n(2) [Recommendation] If the Minister is of the opinion that the import of any specimen, living or dead, would be harmful to Canadian ecosystems or to any species in Canada and that urgent action is needed, the Minister may recommend that an order be made under subsection (1).\n(3) [Duration of amendment] The amendment made by the order applies for the period specified in the order, which period may not be longer than one year from the day the order is made.\n(4) [Exemption] The order is exempt from the application of section 3 of the Statutory Instruments Act.",
|
| 513 |
+
"citation": "WAPPRIITA, s. 21.1"
|
| 514 |
+
},
|
| 515 |
+
{
|
| 516 |
+
"act_code": "W-8.5",
|
| 517 |
+
"act_short": "WAPPRIITA",
|
| 518 |
+
"act_name": "Wild Animal and Plant Protection and Regulation of International and Interprovincial Trade Act",
|
| 519 |
+
"section": "22",
|
| 520 |
+
"marginal_note": "Offence — persons",
|
| 521 |
+
"part": "",
|
| 522 |
+
"division": "",
|
| 523 |
+
"heading": "Offence and Punishment",
|
| 524 |
+
"history": "1992, c. 52, s. 22; 1995, c. 22, s. 18; 2009, c. 14, s. 122",
|
| 525 |
+
"last_amended": "2017-07-12",
|
| 526 |
+
"in_force": "2017-07-12",
|
| 527 |
+
"status": "in force",
|
| 528 |
+
"current_to": "2019-06-21",
|
| 529 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/w-8.5/section-22.html",
|
| 530 |
+
"id": "W-8.5-s22-p1",
|
| 531 |
+
"text": "22\n(1) Every person commits an offence who contravenes\n(a) any provision of this Act;\n(b) any provision of the regulations designated by regulations made under paragraph 21(1)(g.1); or\n(c) any order made under this Act by a court.\n(2) [Penalty — individuals] Every individual who commits an offence under subsection (1) is liable,\n(a) on conviction on indictment,\n(i) for a first offence, to a fine of not less than $15,000 and not more than $1,000,000 or to imprisonment for a term of not more than five years, or to both, and\n(ii) for a second or subsequent offence, to a fine of not less than $30,000 and not more than $2,000,000 or to imprisonment for a term of not more than five years, or to both; or\n(b) on summary conviction,\n(i) for a first offence, to a fine of not less than $5,000 and not more than $300,000 or to imprisonment for a term of not more than six months, or to both, and\n(ii) for a second or subsequent offence, to a fine of not less than $10,000 and not more than $600,000 or to imprisonment for a term of not more than six months, or to both.\n(3) [Penalty — other persons] Every person, other than an individual or a corporation referred to in subsection (4), that commits an offence under subsection (1) is liable,\n(a) on conviction on indictment,\n(i) for a first offence, to a fine of not less than $500,000 and not more than $6,000,000, and\n(ii) for a second or subsequent offence, to a fine of not less than $1,000,000 and not more than $12,000,000; or\n(b) on summary conviction,\n(i) for a first offence, to a fine of not less than $100,000 and not more than $4,000,000, and\n(ii) for a second or subsequent offence, to a fine of not less than $200,000 and not more than $8,000,000.",
|
| 532 |
+
"citation": "WAPPRIITA, s. 22 (part 1 of 2)"
|
| 533 |
+
},
|
| 534 |
+
{
|
| 535 |
+
"act_code": "W-8.5",
|
| 536 |
+
"act_short": "WAPPRIITA",
|
| 537 |
+
"act_name": "Wild Animal and Plant Protection and Regulation of International and Interprovincial Trade Act",
|
| 538 |
+
"section": "22",
|
| 539 |
+
"marginal_note": "Offence — persons",
|
| 540 |
+
"part": "",
|
| 541 |
+
"division": "",
|
| 542 |
+
"heading": "Offence and Punishment",
|
| 543 |
+
"history": "1992, c. 52, s. 22; 1995, c. 22, s. 18; 2009, c. 14, s. 122",
|
| 544 |
+
"last_amended": "2017-07-12",
|
| 545 |
+
"in_force": "2017-07-12",
|
| 546 |
+
"status": "in force",
|
| 547 |
+
"current_to": "2019-06-21",
|
| 548 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/w-8.5/section-22.html",
|
| 549 |
+
"id": "W-8.5-s22-p2",
|
| 550 |
+
"text": "(4) [Penalty — small revenue corporations] Every corporation that commits an offence under subsection (1) and that the court determines under section 22.02 to be a small revenue corporation is liable,\n(a) on conviction on indictment,\n(i) for a first offence, to a fine of not less than $75,000 and not more than $4,000,000, and\n(ii) for a second or subsequent offence, to a fine of not less than $150,000 and not more than $8,000,000; or\n(b) on summary conviction,\n(i) for a first offence, to a fine of not less than $25,000 and not more than $2,000,000, and\n(ii) for a second or subsequent offence, to a fine of not less than $50,000 and not more than $4,000,000.\n(5) [Relief from minimum fine] The court may impose a fine that is less than the minimum amount provided for in this section if it is satisfied, on the basis of evidence submitted to the court, that the minimum fine would cause undue financial hardship. The court shall provide reasons if it imposes a fine that is less than the minimum amount provided for in this section.",
|
| 551 |
+
"citation": "WAPPRIITA, s. 22 (part 2 of 2)"
|
| 552 |
+
},
|
| 553 |
+
{
|
| 554 |
+
"act_code": "W-8.5",
|
| 555 |
+
"act_short": "WAPPRIITA",
|
| 556 |
+
"act_name": "Wild Animal and Plant Protection and Regulation of International and Interprovincial Trade Act",
|
| 557 |
+
"section": "22.01",
|
| 558 |
+
"marginal_note": "Offence — persons",
|
| 559 |
+
"part": "",
|
| 560 |
+
"division": "",
|
| 561 |
+
"heading": "Offence and Punishment",
|
| 562 |
+
"history": "2009, c. 14, s. 122",
|
| 563 |
+
"last_amended": "2017-07-12",
|
| 564 |
+
"in_force": "2017-07-12",
|
| 565 |
+
"status": "in force",
|
| 566 |
+
"current_to": "2019-06-21",
|
| 567 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/w-8.5/section-22.01.html",
|
| 568 |
+
"id": "W-8.5-s22.01",
|
| 569 |
+
"text": "22.01\n(1) Every person commits an offence who contravenes any provision of the regulations, other than a provision the contravention of which is an offence under subsection 22(1).\n(2) [Penalty — individuals] Every individual who commits an offence under subsection (1) is liable,\n(a) on conviction on indictment,\n(i) for a first offence, to a fine of not more than $100,000, and\n(ii) for a second or subsequent offence, to a fine of not more than $200,000; or\n(b) on summary conviction,\n(i) for a first offence, to a fine of not more than $25,000, and\n(ii) for a second or subsequent offence, to a fine of not more than $50,000.\n(3) [Penalty — other persons] Every person, other than an individual or a corporation referred to in subsection (4), that commits an offence under subsection (1) is liable,\n(a) on conviction on indictment,\n(i) for a first offence, to a fine of not more than $500,000, and\n(ii) for a second or subsequent offence, to a fine of not more than $1,000,000; or\n(b) on summary conviction,\n(i) for a first offence, to a fine of not more than $250,000, and\n(ii) for a second or subsequent offence, to a fine of not more than $500,000.\n(4) [Penalty — small revenue corporations] Every corporation that commits an offence under subsection (1) and that the court determines under section 22.02 to be a small revenue corporation is liable,\n(a) on conviction on indictment,\n(i) for a first offence, to a fine of not more than $250,000, and\n(ii) for a second or subsequent offence, to a fine of not more than $500,000; or\n(b) on summary conviction,\n(i) for a first offence, to a fine of not more than $50,000, and\n(ii) for a second or subsequent offence, to a fine of not more than $100,000.",
|
| 570 |
+
"citation": "WAPPRIITA, s. 22.01"
|
| 571 |
+
},
|
| 572 |
+
{
|
| 573 |
+
"act_code": "W-8.5",
|
| 574 |
+
"act_short": "WAPPRIITA",
|
| 575 |
+
"act_name": "Wild Animal and Plant Protection and Regulation of International and Interprovincial Trade Act",
|
| 576 |
+
"section": "22.02",
|
| 577 |
+
"marginal_note": "Determination of small revenue corporation status",
|
| 578 |
+
"part": "",
|
| 579 |
+
"division": "",
|
| 580 |
+
"heading": "Offence and Punishment",
|
| 581 |
+
"history": "2009, c. 14, s. 122",
|
| 582 |
+
"last_amended": "2017-07-12",
|
| 583 |
+
"in_force": "2017-07-12",
|
| 584 |
+
"status": "in force",
|
| 585 |
+
"current_to": "2019-06-21",
|
| 586 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/w-8.5/section-22.02.html",
|
| 587 |
+
"id": "W-8.5-s22.02",
|
| 588 |
+
"text": "22.02 For the purpose of sections 22 and 22.01, a court may determine a corporation to be a small revenue corporation if the court is satisfied that the corporation’s gross revenues for the 12 months immediately before the day on which the subject matter of the proceedings arose — or, if it arose on more than one day, for the 12 months immediately before the first day on which the subject matter of the proceedings arose — were not more than $5,000,000.",
|
| 589 |
+
"citation": "WAPPRIITA, s. 22.02"
|
| 590 |
+
},
|
| 591 |
+
{
|
| 592 |
+
"act_code": "W-8.5",
|
| 593 |
+
"act_short": "WAPPRIITA",
|
| 594 |
+
"act_name": "Wild Animal and Plant Protection and Regulation of International and Interprovincial Trade Act",
|
| 595 |
+
"section": "22.03",
|
| 596 |
+
"marginal_note": "Deeming — second and subsequent offence",
|
| 597 |
+
"part": "",
|
| 598 |
+
"division": "",
|
| 599 |
+
"heading": "Offence and Punishment",
|
| 600 |
+
"history": "2009, c. 14, s. 122",
|
| 601 |
+
"last_amended": "2017-07-12",
|
| 602 |
+
"in_force": "2017-07-12",
|
| 603 |
+
"status": "in force",
|
| 604 |
+
"current_to": "2019-06-21",
|
| 605 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/w-8.5/section-22.03.html",
|
| 606 |
+
"id": "W-8.5-s22.03",
|
| 607 |
+
"text": "22.03\n(1) For the purposes of subsections 22(2) to (4) and 22.01(2) to (4), a conviction for a particular offence under this Act is deemed to be a conviction for a second or subsequent offence if the court is satisfied that the offender has been previously convicted — under any Act of Parliament, or any Act of the legislature of a province, that relates to environmental or wildlife conservation or protection — of a substantially similar offence.\n(2) [Application] Subsection (1) applies only to previous convictions on indictment and to previous convictions on summary conviction, and to previous convictions under any similar procedure under any Act of the legislature of a province, other than a procedure commenced by means of a ticket.",
|
| 608 |
+
"citation": "WAPPRIITA, s. 22.03"
|
| 609 |
+
},
|
| 610 |
+
{
|
| 611 |
+
"act_code": "W-8.5",
|
| 612 |
+
"act_short": "WAPPRIITA",
|
| 613 |
+
"act_name": "Wild Animal and Plant Protection and Regulation of International and Interprovincial Trade Act",
|
| 614 |
+
"section": "22.04",
|
| 615 |
+
"marginal_note": "Additional fine",
|
| 616 |
+
"part": "",
|
| 617 |
+
"division": "",
|
| 618 |
+
"heading": "Offence and Punishment",
|
| 619 |
+
"history": "2009, c. 14, s. 122",
|
| 620 |
+
"last_amended": "2017-07-12",
|
| 621 |
+
"in_force": "2017-07-12",
|
| 622 |
+
"status": "in force",
|
| 623 |
+
"current_to": "2019-06-21",
|
| 624 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/w-8.5/section-22.04.html",
|
| 625 |
+
"id": "W-8.5-s22.04",
|
| 626 |
+
"text": "22.04 If a person is convicted of an offence under this Act and the court is satisfied that, as a result of the commission of the offence, the person acquired any property, benefit or advantage, the court shall order the person to pay an additional fine in an amount equal to the court’s estimation of the value of that property, benefit or advantage. The additional fine may exceed the maximum amount of any fine that may otherwise be imposed under this Act.",
|
| 627 |
+
"citation": "WAPPRIITA, s. 22.04"
|
| 628 |
+
},
|
| 629 |
+
{
|
| 630 |
+
"act_code": "W-8.5",
|
| 631 |
+
"act_short": "WAPPRIITA",
|
| 632 |
+
"act_name": "Wild Animal and Plant Protection and Regulation of International and Interprovincial Trade Act",
|
| 633 |
+
"section": "22.05",
|
| 634 |
+
"marginal_note": "Notice to shareholders",
|
| 635 |
+
"part": "",
|
| 636 |
+
"division": "",
|
| 637 |
+
"heading": "Offence and Punishment",
|
| 638 |
+
"history": "2009, c. 14, s. 122",
|
| 639 |
+
"last_amended": "2017-07-12",
|
| 640 |
+
"in_force": "2017-07-12",
|
| 641 |
+
"status": "in force",
|
| 642 |
+
"current_to": "2019-06-21",
|
| 643 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/w-8.5/section-22.05.html",
|
| 644 |
+
"id": "W-8.5-s22.05",
|
| 645 |
+
"text": "22.05 If a corporation that has shareholders has been convicted of an offence under this Act, the court shall make an order directing the corporation to notify its shareholders, in the manner and within the time directed by the court, of the facts relating to the commission of the offence and of the details of the punishment imposed.",
|
| 646 |
+
"citation": "WAPPRIITA, s. 22.05"
|
| 647 |
+
},
|
| 648 |
+
{
|
| 649 |
+
"act_code": "W-8.5",
|
| 650 |
+
"act_short": "WAPPRIITA",
|
| 651 |
+
"act_name": "Wild Animal and Plant Protection and Regulation of International and Interprovincial Trade Act",
|
| 652 |
+
"section": "22.06",
|
| 653 |
+
"marginal_note": "Contraventions Act",
|
| 654 |
+
"part": "",
|
| 655 |
+
"division": "",
|
| 656 |
+
"heading": "Offence and Punishment",
|
| 657 |
+
"history": "2009, c. 14, s. 122",
|
| 658 |
+
"last_amended": "2017-07-12",
|
| 659 |
+
"in_force": "2017-07-12",
|
| 660 |
+
"status": "in force",
|
| 661 |
+
"current_to": "2019-06-21",
|
| 662 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/w-8.5/section-22.06.html",
|
| 663 |
+
"id": "W-8.5-s22.06",
|
| 664 |
+
"text": "22.06 If an offence under this Act is designated as a contravention under the Contraventions Act, subsection 8(5) of that Act does not apply in respect of the fine that may be established for that contravention.",
|
| 665 |
+
"citation": "WAPPRIITA, s. 22.06"
|
| 666 |
+
},
|
| 667 |
+
{
|
| 668 |
+
"act_code": "W-8.5",
|
| 669 |
+
"act_short": "WAPPRIITA",
|
| 670 |
+
"act_name": "Wild Animal and Plant Protection and Regulation of International and Interprovincial Trade Act",
|
| 671 |
+
"section": "22.07",
|
| 672 |
+
"marginal_note": "Fundamental purpose of sentencing",
|
| 673 |
+
"part": "",
|
| 674 |
+
"division": "",
|
| 675 |
+
"heading": "Offence and Punishment",
|
| 676 |
+
"history": "2009, c. 14, s. 122",
|
| 677 |
+
"last_amended": "2017-07-12",
|
| 678 |
+
"in_force": "2017-07-12",
|
| 679 |
+
"status": "in force",
|
| 680 |
+
"current_to": "2019-06-21",
|
| 681 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/w-8.5/section-22.07.html",
|
| 682 |
+
"id": "W-8.5-s22.07",
|
| 683 |
+
"text": "22.07 The fundamental purpose of sentencing for offences under this Act is to contribute, in light of the numerous serious threats to plants and animals and their importance to the environment, to respect for the law regulating international and interprovincial trade in animals and plants through the imposition of just sanctions that have as their objectives\n(a) to deter the offender and any other person from committing offences under this Act;\n(b) to denounce the unlawful trade in certain animals and plants and to make it unprofitable; and\n(c) to recover, if possible, certain species of animals and plants unlawfully traded.",
|
| 684 |
+
"citation": "WAPPRIITA, s. 22.07"
|
| 685 |
+
},
|
| 686 |
+
{
|
| 687 |
+
"act_code": "W-8.5",
|
| 688 |
+
"act_short": "WAPPRIITA",
|
| 689 |
+
"act_name": "Wild Animal and Plant Protection and Regulation of International and Interprovincial Trade Act",
|
| 690 |
+
"section": "22.08",
|
| 691 |
+
"marginal_note": "Sentencing principles",
|
| 692 |
+
"part": "",
|
| 693 |
+
"division": "",
|
| 694 |
+
"heading": "Offence and Punishment",
|
| 695 |
+
"history": "2009, c. 14, s. 122",
|
| 696 |
+
"last_amended": "2017-07-12",
|
| 697 |
+
"in_force": "2017-07-12",
|
| 698 |
+
"status": "in force",
|
| 699 |
+
"current_to": "2019-06-21",
|
| 700 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/w-8.5/section-22.08.html",
|
| 701 |
+
"id": "W-8.5-s22.08",
|
| 702 |
+
"text": "22.08\n(1) In addition to the principles and factors that the court is otherwise required to consider, including those set out in sections 718.1 to 718.21 of the Criminal Code, the court shall consider the following principles when sentencing a person who is convicted of an offence under this Act:\n(a) the amount of the fine should be increased to account for every aggravating factor associated with the offence, including the aggravating factors set out in subsection (2); and\n(b) the amount of the fine should reflect the gravity of each aggravating factor associated with the offence.\n(2) [Aggravating factors] The aggravating factors are the following:\n(a) the offence caused damage or risk of damage, directly or indirectly, to animals or plants;\n(b) the offence caused damage or risk of damage to a unique, rare, particularly important or vulnerable species of animal or plant or population of animals or plants;\n(c) the offender committed the offence intentionally or recklessly;\n(d) the offender profited, or intended to profit, by committing the offence;\n(e) the offender has a history of non-compliance with federal or provincial legislation that relates to environmental or wildlife conservation or protection; and\n(f) the offence involved a high degree of planning.\n(3) [Absence of aggravating factor] The absence of an aggravating factor set out in subsection (2) is not a mitigating factor.\n(4) [Meaning of damage] For the purposes of paragraphs (2)(a) and (b), damage includes loss of use value and non-use value.\n(5) [Reasons] If the court is satisfied of the existence of one or more of the aggravating factors set out in subsection (2) but decides not to increase the amount of the fine because of that factor, the court shall give reasons for that decision.",
|
| 703 |
+
"citation": "WAPPRIITA, s. 22.08"
|
| 704 |
+
},
|
| 705 |
+
{
|
| 706 |
+
"act_code": "W-8.5",
|
| 707 |
+
"act_short": "WAPPRIITA",
|
| 708 |
+
"act_name": "Wild Animal and Plant Protection and Regulation of International and Interprovincial Trade Act",
|
| 709 |
+
"section": "22.09",
|
| 710 |
+
"marginal_note": "Offences involving more than one animal or plant, etc.",
|
| 711 |
+
"part": "",
|
| 712 |
+
"division": "",
|
| 713 |
+
"heading": "Offence and Punishment",
|
| 714 |
+
"history": "2009, c. 14, s. 122",
|
| 715 |
+
"last_amended": "2017-07-12",
|
| 716 |
+
"in_force": "2017-07-12",
|
| 717 |
+
"status": "in force",
|
| 718 |
+
"current_to": "2019-06-21",
|
| 719 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/w-8.5/section-22.09.html",
|
| 720 |
+
"id": "W-8.5-s22.09",
|
| 721 |
+
"text": "22.09 If an offence under this Act involves more than one animal or plant, or part or derivative of an animal or plant, the fine to be imposed in respect of that offence may, despite sections 22 and 22.01, be the total of the fines that would have been imposed if each of the animals, plants, parts or derivatives had been the subject of a separate information.",
|
| 722 |
+
"citation": "WAPPRIITA, s. 22.09"
|
| 723 |
+
},
|
| 724 |
+
{
|
| 725 |
+
"act_code": "W-8.5",
|
| 726 |
+
"act_short": "WAPPRIITA",
|
| 727 |
+
"act_name": "Wild Animal and Plant Protection and Regulation of International and Interprovincial Trade Act",
|
| 728 |
+
"section": "22.1",
|
| 729 |
+
"marginal_note": "Continuing offence",
|
| 730 |
+
"part": "",
|
| 731 |
+
"division": "",
|
| 732 |
+
"heading": "Offence and Punishment",
|
| 733 |
+
"history": "2009, c. 14, s. 122",
|
| 734 |
+
"last_amended": "2017-07-12",
|
| 735 |
+
"in_force": "2017-07-12",
|
| 736 |
+
"status": "in force",
|
| 737 |
+
"current_to": "2019-06-21",
|
| 738 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/w-8.5/section-22.1.html",
|
| 739 |
+
"id": "W-8.5-s22.1",
|
| 740 |
+
"text": "22.1 If an offence under this Act is committed or continued on more than one day, it is deemed to be a separate offence for each day on which the offence is committed or continued.",
|
| 741 |
+
"citation": "WAPPRIITA, s. 22.1"
|
| 742 |
+
},
|
| 743 |
+
{
|
| 744 |
+
"act_code": "W-8.5",
|
| 745 |
+
"act_short": "WAPPRIITA",
|
| 746 |
+
"act_name": "Wild Animal and Plant Protection and Regulation of International and Interprovincial Trade Act",
|
| 747 |
+
"section": "22.11",
|
| 748 |
+
"marginal_note": "Application of fines",
|
| 749 |
+
"part": "",
|
| 750 |
+
"division": "",
|
| 751 |
+
"heading": "Offence and Punishment",
|
| 752 |
+
"history": "2009, c. 14, s. 122",
|
| 753 |
+
"last_amended": "2017-07-12",
|
| 754 |
+
"in_force": "2017-07-12",
|
| 755 |
+
"status": "in force",
|
| 756 |
+
"current_to": "2019-06-21",
|
| 757 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/w-8.5/section-22.11.html",
|
| 758 |
+
"id": "W-8.5-s22.11",
|
| 759 |
+
"text": "22.11\n(1) All fines received by the Receiver General in respect of the commission of an offence under this Act, other than fines collected under the Contraventions Act, are to be credited to the Environmental Damages Fund, an account in the accounts of Canada, and used for purposes related to protecting, conserving or restoring the environment or for administering that Fund.\n(2) [Recommendations of court] The court imposing the fine may recommend to the Minister that all or a portion of the fine credited to the Environmental Damages Fund be paid to a person or an organization specified by the court for a purpose referred to in subsection (1).",
|
| 760 |
+
"citation": "WAPPRIITA, s. 22.11"
|
| 761 |
+
},
|
| 762 |
+
{
|
| 763 |
+
"act_code": "W-8.5",
|
| 764 |
+
"act_short": "WAPPRIITA",
|
| 765 |
+
"act_name": "Wild Animal and Plant Protection and Regulation of International and Interprovincial Trade Act",
|
| 766 |
+
"section": "22.12",
|
| 767 |
+
"marginal_note": "Orders of court",
|
| 768 |
+
"part": "",
|
| 769 |
+
"division": "",
|
| 770 |
+
"heading": "Offence and Punishment",
|
| 771 |
+
"history": "2009, c. 14, s. 122",
|
| 772 |
+
"last_amended": "2017-07-12",
|
| 773 |
+
"in_force": "2017-07-12",
|
| 774 |
+
"status": "in force",
|
| 775 |
+
"current_to": "2019-06-21",
|
| 776 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/w-8.5/section-22.12.html",
|
| 777 |
+
"id": "W-8.5-s22.12-p1",
|
| 778 |
+
"text": "22.12\n(1) If a person is convicted of an offence under this Act, in addition to any punishment imposed, the court may, having regard to the nature of the offence and the circumstances surrounding its commission, make an order containing one or more of the following prohibitions, directions or requirements:\n(a) prohibiting the person from doing any act or engaging in any activity that could, in the opinion of the court, result in the continuation or repetition of the offence;\n(b) directing the person to take any action that the court considers appropriate to remedy or avoid any harm to any animal or plant to which any provision of this Act applies that resulted or may result from the commission of the offence;\n(c) directing the person to publish, in the manner specified by the court, the facts relating to the commission of the offence and the details of the punishment imposed, including any orders made under this subsection;\n(d) directing the person to notify, at the person’s own cost and in the manner specified by the court, any person aggrieved or affected by the offender’s conduct of the facts relating to the commission of the offence and of the details of the punishment imposed, including any orders made under this subsection;\n(e) directing the person to compensate any person, monetarily or otherwise, in whole or in part, for the cost of any remedial or preventive action taken, caused to be taken or to be taken as a result of the act or omission that constituted the offence, including costs of assessing appropriate remedial or preventive action;\n(f) directing the person to perform community service in accordance with any reasonable conditions that may be specified in the order;",
|
| 779 |
+
"citation": "WAPPRIITA, s. 22.12 (part 1 of 4)"
|
| 780 |
+
},
|
| 781 |
+
{
|
| 782 |
+
"act_code": "W-8.5",
|
| 783 |
+
"act_short": "WAPPRIITA",
|
| 784 |
+
"act_name": "Wild Animal and Plant Protection and Regulation of International and Interprovincial Trade Act",
|
| 785 |
+
"section": "22.12",
|
| 786 |
+
"marginal_note": "Orders of court",
|
| 787 |
+
"part": "",
|
| 788 |
+
"division": "",
|
| 789 |
+
"heading": "Offence and Punishment",
|
| 790 |
+
"history": "2009, c. 14, s. 122",
|
| 791 |
+
"last_amended": "2017-07-12",
|
| 792 |
+
"in_force": "2017-07-12",
|
| 793 |
+
"status": "in force",
|
| 794 |
+
"current_to": "2019-06-21",
|
| 795 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/w-8.5/section-22.12.html",
|
| 796 |
+
"id": "W-8.5-s22.12-p2",
|
| 797 |
+
"text": "(f.1) directing the person to pay, in a manner specified by the court, an amount to enable research to be conducted into the protection or conservation of animals or plants;\n(f.2) directing the person to pay, in the manner prescribed by the court, an amount to an educational institution including for scholarships for students enrolled in studies related to the environment;\n(f.3) directing the person to pay, in the manner prescribed by the court, an amount to environmental or other groups to assist in their work in relation to the protection of the species of animal or plant that was the subject of the offence;\n(g) directing the person to post a bond, provide surety or pay into court an amount of money that the court considers appropriate for the purpose of ensuring compliance with any prohibition, direction or requirement mentioned in this subsection;\n(h) directing the person to pay to Her Majesty in right of Canada an amount of money that the court considers appropriate for the purpose of promoting the conservation or protection of animals or plants;\n(i) directing the person to submit to the Minister, when requested to do so by the Minister at any time within three years after the date of the conviction, any information respecting the activities of the person that the court considers appropriate in the circumstances;\n(j) requiring the person to comply with any other conditions that the court considers appropriate in the circumstances for securing the person’s good conduct and for deterring the person and any other person from committing offences under this Act;\n(k) requiring the person to surrender to the Minister any permit issued under this Act to the person; and",
|
| 798 |
+
"citation": "WAPPRIITA, s. 22.12 (part 2 of 4)"
|
| 799 |
+
},
|
| 800 |
+
{
|
| 801 |
+
"act_code": "W-8.5",
|
| 802 |
+
"act_short": "WAPPRIITA",
|
| 803 |
+
"act_name": "Wild Animal and Plant Protection and Regulation of International and Interprovincial Trade Act",
|
| 804 |
+
"section": "22.12",
|
| 805 |
+
"marginal_note": "Orders of court",
|
| 806 |
+
"part": "",
|
| 807 |
+
"division": "",
|
| 808 |
+
"heading": "Offence and Punishment",
|
| 809 |
+
"history": "2009, c. 14, s. 122",
|
| 810 |
+
"last_amended": "2017-07-12",
|
| 811 |
+
"in_force": "2017-07-12",
|
| 812 |
+
"status": "in force",
|
| 813 |
+
"current_to": "2019-06-21",
|
| 814 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/w-8.5/section-22.12.html",
|
| 815 |
+
"id": "W-8.5-s22.12-p3",
|
| 816 |
+
"text": "(l) prohibiting the person from applying for any new permit under this Act during any period that the court considers appropriate.\n(2) [Publication] If a person fails to comply with an order made under paragraph (1)(c), the Minister may, in the manner that the court directed the person to do so, publish the facts relating to the commission of the offence and the details of the punishment imposed and recover the costs of publication from the offender.\n(3) [Debt due to Her Majesty] If the court makes an order under paragraph (1)(e) or (h) directing a person to pay an amount to Her Majesty in right of Canada, or if the Minister incurs publication costs under subsection (2), the amount or the costs, as the case may be, constitute a debt due to Her Majesty in right of Canada and may be recovered in any court of competent jurisdiction.\n(4) [Enforcement] If the court makes an order under paragraph (1)(e) directing a person to pay an amount to another person, other than to Her Majesty in right of Canada, and the amount is not paid without delay, that other person may, by filing the order, enter as a judgment, in the superior court of the province in which the trial was held, the amount ordered to be paid, and that judgment is enforceable against the person who was directed to pay the amount in the same manner as if it were a judgment rendered against the offender in that court in civil proceedings.\n(5) [Cancellation or suspension of permits] If the court makes an order under paragraph (1)(k), any permit to which the order relates is cancelled unless the court makes an order suspending it for any period that the court considers appropriate.",
|
| 817 |
+
"citation": "WAPPRIITA, s. 22.12 (part 3 of 4)"
|
| 818 |
+
},
|
| 819 |
+
{
|
| 820 |
+
"act_code": "W-8.5",
|
| 821 |
+
"act_short": "WAPPRIITA",
|
| 822 |
+
"act_name": "Wild Animal and Plant Protection and Regulation of International and Interprovincial Trade Act",
|
| 823 |
+
"section": "22.12",
|
| 824 |
+
"marginal_note": "Orders of court",
|
| 825 |
+
"part": "",
|
| 826 |
+
"division": "",
|
| 827 |
+
"heading": "Offence and Punishment",
|
| 828 |
+
"history": "2009, c. 14, s. 122",
|
| 829 |
+
"last_amended": "2017-07-12",
|
| 830 |
+
"in_force": "2017-07-12",
|
| 831 |
+
"status": "in force",
|
| 832 |
+
"current_to": "2019-06-21",
|
| 833 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/w-8.5/section-22.12.html",
|
| 834 |
+
"id": "W-8.5-s22.12-p4",
|
| 835 |
+
"text": "(6) [Coming into force and duration of order] An order made under subsection (1) comes into force on the day on which it is made or on any other day that the court may determine and shall not continue in force for more than three years after that day unless the court provides otherwise in the order.",
|
| 836 |
+
"citation": "WAPPRIITA, s. 22.12 (part 4 of 4)"
|
| 837 |
+
},
|
| 838 |
+
{
|
| 839 |
+
"act_code": "W-8.5",
|
| 840 |
+
"act_short": "WAPPRIITA",
|
| 841 |
+
"act_name": "Wild Animal and Plant Protection and Regulation of International and Interprovincial Trade Act",
|
| 842 |
+
"section": "22.13",
|
| 843 |
+
"marginal_note": "Suspended sentence",
|
| 844 |
+
"part": "",
|
| 845 |
+
"division": "",
|
| 846 |
+
"heading": "Offence and Punishment",
|
| 847 |
+
"history": "2009, c. 14, s. 122",
|
| 848 |
+
"last_amended": "2017-07-12",
|
| 849 |
+
"in_force": "2017-07-12",
|
| 850 |
+
"status": "in force",
|
| 851 |
+
"current_to": "2019-06-21",
|
| 852 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/w-8.5/section-22.13.html",
|
| 853 |
+
"id": "W-8.5-s22.13",
|
| 854 |
+
"text": "22.13 If a person is convicted of an offence under this Act and the court suspends the passing of sentence pursuant to paragraph 731(1)(a) of the Criminal Code, the court may, in addition to any probation order made under that paragraph, make an order directing the person to comply with any prohibition, direction or requirement mentioned in section 22.12.",
|
| 855 |
+
"citation": "WAPPRIITA, s. 22.13"
|
| 856 |
+
},
|
| 857 |
+
{
|
| 858 |
+
"act_code": "W-8.5",
|
| 859 |
+
"act_short": "WAPPRIITA",
|
| 860 |
+
"act_name": "Wild Animal and Plant Protection and Regulation of International and Interprovincial Trade Act",
|
| 861 |
+
"section": "22.14",
|
| 862 |
+
"marginal_note": "Imposition of sentence",
|
| 863 |
+
"part": "",
|
| 864 |
+
"division": "",
|
| 865 |
+
"heading": "Offence and Punishment",
|
| 866 |
+
"history": "2009, c. 14, s. 122",
|
| 867 |
+
"last_amended": "2017-07-12",
|
| 868 |
+
"in_force": "2017-07-12",
|
| 869 |
+
"status": "in force",
|
| 870 |
+
"current_to": "2019-06-21",
|
| 871 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/w-8.5/section-22.14.html",
|
| 872 |
+
"id": "W-8.5-s22.14",
|
| 873 |
+
"text": "22.14 If a person whose sentence has been suspended fails to comply with an order made under 22.12 or is convicted, within three years after the day on which the order was made, of another offence under this Act, the court may, on the application of the prosecution, impose any sentence that could have been imposed if the passing of sentence had not been suspended.",
|
| 874 |
+
"citation": "WAPPRIITA, s. 22.14"
|
| 875 |
+
},
|
| 876 |
+
{
|
| 877 |
+
"act_code": "W-8.5",
|
| 878 |
+
"act_short": "WAPPRIITA",
|
| 879 |
+
"act_name": "Wild Animal and Plant Protection and Regulation of International and Interprovincial Trade Act",
|
| 880 |
+
"section": "22.15",
|
| 881 |
+
"marginal_note": "Limitation period",
|
| 882 |
+
"part": "",
|
| 883 |
+
"division": "",
|
| 884 |
+
"heading": "Offence and Punishment",
|
| 885 |
+
"history": "2009, c. 14, s. 122",
|
| 886 |
+
"last_amended": "2017-07-12",
|
| 887 |
+
"in_force": "2017-07-12",
|
| 888 |
+
"status": "in force",
|
| 889 |
+
"current_to": "2019-06-21",
|
| 890 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/w-8.5/section-22.15.html",
|
| 891 |
+
"id": "W-8.5-s22.15",
|
| 892 |
+
"text": "22.15 No proceedings by way of summary conviction in respect of an offence under this Act may be instituted more than five years after the day on which the subject matter of the proceedings arose, unless the prosecutor and the defendant agree that they may be instituted after the five years.",
|
| 893 |
+
"citation": "WAPPRIITA, s. 22.15"
|
| 894 |
+
},
|
| 895 |
+
{
|
| 896 |
+
"act_code": "W-8.5",
|
| 897 |
+
"act_short": "WAPPRIITA",
|
| 898 |
+
"act_name": "Wild Animal and Plant Protection and Regulation of International and Interprovincial Trade Act",
|
| 899 |
+
"section": "22.16",
|
| 900 |
+
"marginal_note": "Minister may refuse or suspend permit",
|
| 901 |
+
"part": "",
|
| 902 |
+
"division": "",
|
| 903 |
+
"heading": "Offence and Punishment",
|
| 904 |
+
"history": "2009, c. 14, s. 122",
|
| 905 |
+
"last_amended": "2017-07-12",
|
| 906 |
+
"in_force": "2017-07-12",
|
| 907 |
+
"status": "in force",
|
| 908 |
+
"current_to": "2019-06-21",
|
| 909 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/w-8.5/section-22.16.html",
|
| 910 |
+
"id": "W-8.5-s22.16",
|
| 911 |
+
"text": "22.16 The Minister may refuse to issue a permit under this Act, or may cancel such a permit, if the applicant or the holder has been convicted of an offence under this Act.",
|
| 912 |
+
"citation": "WAPPRIITA, s. 22.16"
|
| 913 |
+
},
|
| 914 |
+
{
|
| 915 |
+
"act_code": "W-8.5",
|
| 916 |
+
"act_short": "WAPPRIITA",
|
| 917 |
+
"act_name": "Wild Animal and Plant Protection and Regulation of International and Interprovincial Trade Act",
|
| 918 |
+
"section": "23",
|
| 919 |
+
"marginal_note": "Procedure",
|
| 920 |
+
"part": "",
|
| 921 |
+
"division": "",
|
| 922 |
+
"heading": "Ticketable Offences",
|
| 923 |
+
"history": "",
|
| 924 |
+
"last_amended": "2002-12-31",
|
| 925 |
+
"in_force": "2002-12-31",
|
| 926 |
+
"status": "in force",
|
| 927 |
+
"current_to": "2019-06-21",
|
| 928 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/w-8.5/section-23.html",
|
| 929 |
+
"id": "W-8.5-s23-p1",
|
| 930 |
+
"text": "23\n(1) In addition to the procedures set out in the Criminal Code for commencing a proceeding, proceedings in respect of any prescribed offence may be commenced by an officer\n(a) completing a ticket that consists of a summons portion and an information portion;\n(b) delivering the summons portion of the ticket to the accused or mailing it to the accused at the accused’s latest known address; and\n(c) filing the information portion of the ticket with a court of competent jurisdiction before or as soon as practicable after the summons portion has been delivered or mailed.\n(2) [Content of ticket] The summons and information portions of a ticket shall\n(a) set out a description of the offence and the time and place of its alleged commission;\n(b) include a statement, signed by the officer who completes the ticket, that the officer has reasonable grounds to believe that the accused committed the offence;\n(c) set out the amount of the prescribed fine for the offence and the manner in which and period within which it may be paid;\n(d) include a statement that if the accused pays the fine within the period set out in the ticket, a conviction will be entered and recorded against the accused; and\n(e) include a statement that if the accused wishes to plead not guilty or for any other reason fails to pay the fine within the period set out in the ticket, the accused must appear in the court and at the time set out in the ticket.",
|
| 931 |
+
"citation": "WAPPRIITA, s. 23 (part 1 of 2)"
|
| 932 |
+
},
|
| 933 |
+
{
|
| 934 |
+
"act_code": "W-8.5",
|
| 935 |
+
"act_short": "WAPPRIITA",
|
| 936 |
+
"act_name": "Wild Animal and Plant Protection and Regulation of International and Interprovincial Trade Act",
|
| 937 |
+
"section": "23",
|
| 938 |
+
"marginal_note": "Procedure",
|
| 939 |
+
"part": "",
|
| 940 |
+
"division": "",
|
| 941 |
+
"heading": "Ticketable Offences",
|
| 942 |
+
"history": "",
|
| 943 |
+
"last_amended": "2002-12-31",
|
| 944 |
+
"in_force": "2002-12-31",
|
| 945 |
+
"status": "in force",
|
| 946 |
+
"current_to": "2019-06-21",
|
| 947 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/w-8.5/section-23.html",
|
| 948 |
+
"id": "W-8.5-s23-p2",
|
| 949 |
+
"text": "(3) [Notice of forfeiture] Where any thing is seized under this Act and proceedings relating to the thing are commenced by way of the ticketing procedure described in subsection (1), the officer who completes the ticket shall give written notice to the accused that if the accused pays the prescribed fine within the period set out in the ticket, the thing, or any proceeds realized from its disposition, shall thereupon be forfeited to Her Majesty.\n(4) [Consequences of payment] Where an accused to whom the summons portion of a ticket is delivered or mailed pays the prescribed fine within the period set out in the ticket,\n(a) the payment constitutes a plea of guilty to the offence described in the ticket and a conviction shall be entered against the accused and no further action shall be taken against the accused in respect of that offence; and\n(b) any thing seized from the accused under this Act relating to the offence described in the ticket, or any proceeds realized from its disposition, are forfeited to Her Majesty and may be disposed of as the Minister directs.\n(5) [Regulations] The Governor in Council may make regulations prescribing\n(a) offences under this Act to which this section applies and the manner in which those offences may be described in tickets; and\n(b) the amount of the fine for a prescribed offence, which amount shall not exceed one thousand dollars.",
|
| 950 |
+
"citation": "WAPPRIITA, s. 23 (part 2 of 2)"
|
| 951 |
+
},
|
| 952 |
+
{
|
| 953 |
+
"act_code": "W-8.5",
|
| 954 |
+
"act_short": "WAPPRIITA",
|
| 955 |
+
"act_name": "Wild Animal and Plant Protection and Regulation of International and Interprovincial Trade Act",
|
| 956 |
+
"section": "24",
|
| 957 |
+
"marginal_note": "Liability of directors, officers, etc., of corporation",
|
| 958 |
+
"part": "",
|
| 959 |
+
"division": "",
|
| 960 |
+
"heading": "General",
|
| 961 |
+
"history": "1992, c. 52, s. 24; 2009, c. 14, s. 123",
|
| 962 |
+
"last_amended": "2017-07-12",
|
| 963 |
+
"in_force": "2017-07-12",
|
| 964 |
+
"status": "in force",
|
| 965 |
+
"current_to": "2019-06-21",
|
| 966 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/w-8.5/section-24.html",
|
| 967 |
+
"id": "W-8.5-s24",
|
| 968 |
+
"text": "24\n(1) If a corporation commits an offence under this Act, any director, officer, 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 is liable on conviction to the penalty provided for by this Act for an individual in respect of the offence committed by the corporation, whether or not the corporation has been prosecuted or convicted.\n(2) [Directors’ duties] Every director and officer of a corporation shall take all reasonable care to ensure that the corporation complies with\n(a) this Act and the regulations; and\n(b) orders made under this Act.",
|
| 969 |
+
"citation": "WAPPRIITA, s. 24"
|
| 970 |
+
},
|
| 971 |
+
{
|
| 972 |
+
"act_code": "W-8.5",
|
| 973 |
+
"act_short": "WAPPRIITA",
|
| 974 |
+
"act_name": "Wild Animal and Plant Protection and Regulation of International and Interprovincial Trade Act",
|
| 975 |
+
"section": "25",
|
| 976 |
+
"marginal_note": "Offences by employees or agents",
|
| 977 |
+
"part": "",
|
| 978 |
+
"division": "",
|
| 979 |
+
"heading": "General",
|
| 980 |
+
"history": "",
|
| 981 |
+
"last_amended": "2002-12-31",
|
| 982 |
+
"in_force": "2002-12-31",
|
| 983 |
+
"status": "in force",
|
| 984 |
+
"current_to": "2019-06-21",
|
| 985 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/w-8.5/section-25.html",
|
| 986 |
+
"id": "W-8.5-s25",
|
| 987 |
+
"text": "25 In any 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 of the accused, whether or not the employee or agent is identified or has been 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.",
|
| 988 |
+
"citation": "WAPPRIITA, s. 25"
|
| 989 |
+
},
|
| 990 |
+
{
|
| 991 |
+
"act_code": "W-8.5",
|
| 992 |
+
"act_short": "WAPPRIITA",
|
| 993 |
+
"act_name": "Wild Animal and Plant Protection and Regulation of International and Interprovincial Trade Act",
|
| 994 |
+
"section": "26",
|
| 995 |
+
"marginal_note": "Venue",
|
| 996 |
+
"part": "",
|
| 997 |
+
"division": "",
|
| 998 |
+
"heading": "General",
|
| 999 |
+
"history": "",
|
| 1000 |
+
"last_amended": "2002-12-31",
|
| 1001 |
+
"in_force": "2002-12-31",
|
| 1002 |
+
"status": "in force",
|
| 1003 |
+
"current_to": "2019-06-21",
|
| 1004 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/w-8.5/section-26.html",
|
| 1005 |
+
"id": "W-8.5-s26",
|
| 1006 |
+
"text": "26 A prosecution for an offence under this Act may be instituted, heard and determined in the place where the offence was committed or the subject-matter of the prosecution arose, where the accused was apprehended or where the accused happens to be, or is carrying on business.",
|
| 1007 |
+
"citation": "WAPPRIITA, s. 26"
|
| 1008 |
+
},
|
| 1009 |
+
{
|
| 1010 |
+
"act_code": "W-8.5",
|
| 1011 |
+
"act_short": "WAPPRIITA",
|
| 1012 |
+
"act_name": "Wild Animal and Plant Protection and Regulation of International and Interprovincial Trade Act",
|
| 1013 |
+
"section": "27",
|
| 1014 |
+
"marginal_note": "Unpaid fees or charges",
|
| 1015 |
+
"part": "",
|
| 1016 |
+
"division": "",
|
| 1017 |
+
"heading": "General",
|
| 1018 |
+
"history": "",
|
| 1019 |
+
"last_amended": "2002-12-31",
|
| 1020 |
+
"in_force": "2002-12-31",
|
| 1021 |
+
"status": "in force",
|
| 1022 |
+
"current_to": "2019-06-21",
|
| 1023 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/w-8.5/section-27.html",
|
| 1024 |
+
"id": "W-8.5-s27",
|
| 1025 |
+
"text": "27 Where any fee or charge imposed under this Act is unpaid, the fee or charge, as the case may be, may be recovered from the person on whom it was imposed as a debt due to Her Majesty.",
|
| 1026 |
+
"citation": "WAPPRIITA, s. 27"
|
| 1027 |
+
},
|
| 1028 |
+
{
|
| 1029 |
+
"act_code": "W-8.5",
|
| 1030 |
+
"act_short": "WAPPRIITA",
|
| 1031 |
+
"act_name": "Wild Animal and Plant Protection and Regulation of International and Interprovincial Trade Act",
|
| 1032 |
+
"section": "27.1",
|
| 1033 |
+
"marginal_note": "Publication of information about contraventions",
|
| 1034 |
+
"part": "",
|
| 1035 |
+
"division": "",
|
| 1036 |
+
"heading": "General",
|
| 1037 |
+
"history": "2009, c. 14, s. 124",
|
| 1038 |
+
"last_amended": "2010-12-10",
|
| 1039 |
+
"in_force": "2010-12-10",
|
| 1040 |
+
"status": "in force",
|
| 1041 |
+
"current_to": "2019-06-21",
|
| 1042 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/w-8.5/section-27.1.html",
|
| 1043 |
+
"id": "W-8.5-s27.1",
|
| 1044 |
+
"text": "27.1\n(1) For the purpose of encouraging compliance with this Act and the regulations, the Minister shall maintain, in a registry accessible to the public, information about all convictions of corporations for offences under this Act.\n(2) [Retention] Information in the registry is to be maintained for a minimum of five years.",
|
| 1045 |
+
"citation": "WAPPRIITA, s. 27.1"
|
| 1046 |
+
},
|
| 1047 |
+
{
|
| 1048 |
+
"act_code": "W-8.5",
|
| 1049 |
+
"act_short": "WAPPRIITA",
|
| 1050 |
+
"act_name": "Wild Animal and Plant Protection and Regulation of International and Interprovincial Trade Act",
|
| 1051 |
+
"section": "28",
|
| 1052 |
+
"marginal_note": "Report to Parliament",
|
| 1053 |
+
"part": "",
|
| 1054 |
+
"division": "",
|
| 1055 |
+
"heading": "General",
|
| 1056 |
+
"history": "",
|
| 1057 |
+
"last_amended": "2002-12-31",
|
| 1058 |
+
"in_force": "2002-12-31",
|
| 1059 |
+
"status": "in force",
|
| 1060 |
+
"current_to": "2019-06-21",
|
| 1061 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/w-8.5/section-28.html",
|
| 1062 |
+
"id": "W-8.5-s28",
|
| 1063 |
+
"text": "28 The Minister shall annually prepare a report with respect to the administration of this Act during the preceding calendar year and shall cause a copy of the report to be laid before each House of Parliament on any of the first fifteen days that the House is sitting after its completion.",
|
| 1064 |
+
"citation": "WAPPRIITA, s. 28"
|
| 1065 |
+
},
|
| 1066 |
+
{
|
| 1067 |
+
"act_code": "W-8.5",
|
| 1068 |
+
"act_short": "WAPPRIITA",
|
| 1069 |
+
"act_name": "Wild Animal and Plant Protection and Regulation of International and Interprovincial Trade Act",
|
| 1070 |
+
"section": "28.1",
|
| 1071 |
+
"marginal_note": "Review",
|
| 1072 |
+
"part": "",
|
| 1073 |
+
"division": "",
|
| 1074 |
+
"heading": "General",
|
| 1075 |
+
"history": "2009, c. 14, s. 125",
|
| 1076 |
+
"last_amended": "2010-12-10",
|
| 1077 |
+
"in_force": "2010-12-10",
|
| 1078 |
+
"status": "in force",
|
| 1079 |
+
"current_to": "2019-06-21",
|
| 1080 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/w-8.5/section-28.1.html",
|
| 1081 |
+
"id": "W-8.5-s28.1",
|
| 1082 |
+
"text": "28.1\n(1) The Minister shall, 10 years after the day on which this section comes into force and every 10 years after that, undertake a review of sections 22 to 22.16.\n(2) [Report to Parliament] The Minister shall, no later than one year after the day on which the review is undertaken, cause a report on the review to be tabled in each House of Parliament.",
|
| 1083 |
+
"citation": "WAPPRIITA, s. 28.1"
|
| 1084 |
+
},
|
| 1085 |
+
{
|
| 1086 |
+
"act_code": "W-8.5",
|
| 1087 |
+
"act_short": "WAPPRIITA",
|
| 1088 |
+
"act_name": "Wild Animal and Plant Protection and Regulation of International and Interprovincial Trade Act",
|
| 1089 |
+
"section": "29",
|
| 1090 |
+
"marginal_note": "",
|
| 1091 |
+
"part": "",
|
| 1092 |
+
"division": "",
|
| 1093 |
+
"heading": "Repeal",
|
| 1094 |
+
"history": "",
|
| 1095 |
+
"last_amended": "2002-12-31",
|
| 1096 |
+
"in_force": "2002-12-31",
|
| 1097 |
+
"status": "in force",
|
| 1098 |
+
"current_to": "2019-06-21",
|
| 1099 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/w-8.5/section-29.html",
|
| 1100 |
+
"id": "W-8.5-s29",
|
| 1101 |
+
"text": "29 [Repeal]",
|
| 1102 |
+
"citation": "WAPPRIITA, s. 29"
|
| 1103 |
+
},
|
| 1104 |
+
{
|
| 1105 |
+
"act_code": "W-8.5",
|
| 1106 |
+
"act_short": "WAPPRIITA",
|
| 1107 |
+
"act_name": "Wild Animal and Plant Protection and Regulation of International and Interprovincial Trade Act",
|
| 1108 |
+
"section": "*30",
|
| 1109 |
+
"marginal_note": "Coming into force",
|
| 1110 |
+
"part": "",
|
| 1111 |
+
"division": "",
|
| 1112 |
+
"heading": "Coming into Force",
|
| 1113 |
+
"history": "",
|
| 1114 |
+
"last_amended": "2002-12-31",
|
| 1115 |
+
"in_force": "2002-12-31",
|
| 1116 |
+
"status": "in force",
|
| 1117 |
+
"current_to": "2019-06-21",
|
| 1118 |
+
"source_url": "https://laws-lois.justice.gc.ca/eng/acts/w-8.5/section-*30.html",
|
| 1119 |
+
"id": "W-8.5-s*30",
|
| 1120 |
+
"text": "*30 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 May 14, 1996, see SI/96-41.]",
|
| 1121 |
+
"citation": "WAPPRIITA, s. *30"
|
| 1122 |
+
}
|
| 1123 |
+
]
|
|
The diff for this file is too large to render.
See raw diff
|
|
|
|
@@ -4981,8 +4981,8 @@
|
|
| 4981 |
"text": "What is the Public Service Management Insurance Plan?\nThe Public Service Management Insurance Plan (PSMIP) provides public service employees who are excluded from collective bargaining with the following types of insurance:\n- Group Life Insurance\n- Accidental Death and Dismemberment (AD&D) Insurance\n- Dependants’ Insurance\n- Long-Term Disability (LTD) Insurance\nSome of these types of insurance are available to all members. Other types are restricted to certain senior-level employees.\nThis booklet outlines the major benefit provisions of the PSMIP that apply to excluded public service employees. If you are a member of the Executive Group or are otherwise entitled to the government-paid insurance benefits provided to executives, refer to the Public Service Management Insurance Plan Executive Plan Booklet .\nIndustrial Alliance is the principal insurer and carries out the following:\n- evaluates statements of health\n- approves and denies claims for benefits\n- receives and invests premiums on behalf of the PSMIP\n- monitors the PSMIP’s financial and underwriting experience\n- reports annually to the Board of Trustees on the status of the plan’s finances\n- brings matters of concern to the attention of the trustees\n- responds to matters raised by the trustees or the secretary as the need arises\n- provides members with a summary of the annual report on the PSMIP’s administration and financial affairs\nThe Board of Trustees, which administers the PSMIP, comprises senior government officials appointed by the President of the Treasury Board. As the policy holder, the Board of Trustees has a continuing responsibility to:\n- review the provisions of the PSMIP and recommend changes as required\n- review the financial experience of the PSMIP periodically to ensure its solvency",
|
| 4982 |
"history": "",
|
| 4983 |
"last_amended": "",
|
| 4984 |
-
"current_to": "",
|
| 4985 |
-
"citation": "PSMIP Main Plan Booklet, “What is the Public Service Management Insurance Plan?”",
|
| 4986 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 4987 |
},
|
| 4988 |
{
|
|
@@ -4999,8 +4999,8 @@
|
|
| 4999 |
"text": "- review the problems arising from the administration and adjudication of claims\nThis booklet provides general information on the major benefit provisions of the PSMIP. Your departmental compensation services or the Public Service Pay Centre can provide information on the following:\n- eligibility for membership\n- application procedures\n- beginning and cost of coverage\n- coverage during leaves of absence or other periods without pay\n- termination or cancellation of coverage\n- other provisions\nThe complete terms and conditions of the PSMIP are set out in a contract of insurance between the Board of Trustees and the insurer. In any case of conflict between this booklet and the insurance contract, the terms of the contract shall prevail.",
|
| 5000 |
"history": "",
|
| 5001 |
"last_amended": "",
|
| 5002 |
-
"current_to": "",
|
| 5003 |
-
"citation": "PSMIP Main Plan Booklet, “What is the Public Service Management Insurance Plan?”",
|
| 5004 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5005 |
},
|
| 5006 |
{
|
|
@@ -5017,8 +5017,8 @@
|
|
| 5017 |
"text": "Long-Term Disability insurance What is Long-Term Disability insurance? The Long-Term Disability (LTD) component of the PSMIP is an important part of the income-protection arrangements for members. LTD provides a monthly income benefit for employees who are unable to work for a lengthy period of time because of a totally disabling illness or injury. The employer and the employee share the cost of the premium for this insurance. Am I eligible for Long-Term Disability benefits? If you are a member under the LTD insurance plan, you are eligible for benefits for up to 24 months if, as a result of a physical or mental impairment determined by a physician, you are unable to perform the essential functions of your regular job. At the end of this 24 month period, your benefits will be continued if you remain totally disabled and are unable to earn two thirds of the current salary of the position you held before you became disabled. Your LTD benefits will continue as long as you remain totally disabled. Benefits will not continue beyond your 65 th birthday. While you are receiving LTD benefits, you must be under the active care of a physician who is a registered specialist in the field of medicine related to your disabling condition. You must also be receiving medical treatment or participating in a program of rehabilitation approved by the insurer. You are not eligible for benefits if: your disability is the result of a mental or physical impairment that existed before you became insured: this exclusion is lifted if you complete a continuous period of 90 days of active employment while insured for LTD, or after you have been insured for LTD for two years, whichever comes first your disability results from or is related to: a normal pregnancy (without severe complications) commission of a felony self-inflicted injury a mental or physical impairment suffered while on active duty with any armed force your disability results from or is related to an act of declared or undeclared war; this exclusion does not apply to persons who become totally disabled in this way while outside Canada at the direction of the employer Note: If you become disabled, contact your departmental compensation services or the Public Service Pay Centre , even if you are unsure whether or not you qualify for LTD benefits. What happens if I retire before using all my sick leave credits? If you retire voluntarily before exhausting your accumulated sick leave credits, your unused sick leave credits will still be counted and used to determine the date that your LTD benefits will begin. If you are considering terminating your employment prior to exhausting your sick leave credits, contact your departmental compensation services or the Public Service Pay Centre to see if your termination will be considered as a voluntary termination for LTD purposes. How are my Long-Term Disability benefits calculated? If you become totally disabled, your gross annual benefit will be 70% of your insured annual salary at the end of the elimination period (13 weeks or the exhaustion of your sick leave, whichever is later). The definition of salary is the same as that used for the Supplementary Death Benefit under the PSSA Your insured annual salary for the purposes of LTD is equal to your annual salary at the end of the elimination period if it is a multiple of $250, or the next multiple of $250 above that amount. A member who works part time will have the insured annual salary based on assigned hours of work. Payments are made monthly. Other income, whether it be income received as a result of being in receipt of a PSSA benefit or a disability benefit under the Canada Pension Plan (CPP) or Quebec Pension Plan (QPP), will be deducted as an offset from your LTD benefits. Your net benefit, which is the amount payable to you after other income has been deducted as an offset, will be subject to an annual increase related to increases in the cost of living, up to a maximum of 3%. Any retroactive salary increase approved after the date your LTD benefits become payable affects your insured salary and benefit level only when the effective date of the increase precedes the date on which your LTD benefits began. For example, a retroactive salary increase approved in April that took effect from February 10 would affect your LTD benefits only if your benefits began on February 11 or later. Table 1: example of benefit calculation 1. Your annual salary at end of elimination period $47,925 2. Your insured salary (annual salary taken to next highest multiple of $250) $48,000 3. Your gross annual LTD benefit (70% of $48,000) $33,600 4. Less other income you are receiving PSSA benefit $14,000 CPP disability benefit $8,000 5. Your net annual LTD benefit $11,600 6. The amount of monthly LTD payments ($11,600 divided by 12) $967 If the cost of living rose by 2% in the year following the start of your benefits, your net monthly LTD benefit of $967 would be increased by 2% to $986.34 on January 1 following the effective date your benefits start. Your PSSA and CPP or QPP benefits would be adjusted to reflect increases in the cost of living. You would receive the full increase under those plans, and the increase would not be deducted from your LTD benefit. On January 1 of each subsequent year, your LTD benefit would be further increased to reflect increases in the cost of living, up to a maximum of 3% annually. Offsets: what types of income will be deducted from my Long-Term Disability benefits? The following examples illustrate the most common types of income that would be deducted from your LTD benefits: benefits received under the PSSA LTD benefits under the CPP or the QPP, excluding benefits payable to or on behalf of your dependants as a result of your disability benefits under the or similar benefits under a plan of the federal government or any other government LTD benefits paid or available under another group insurance plan, or under a policy issued to you as a result of your membership in a public service employee union or association disability insurance benefits under the legislation of any government, such as income replacement benefits under a no-fault automobile insurance plan loss-of-income benefits received under a third-party damage award The following are examples of income that would not be deducted from your Long-Term Disability benefits: increases related to the cost of living indexation under the PSSA, CPP or QPP return of superannuation contributions where no pension entitlement is available benefits received under a purely private and personal insurance policy, or under a policy issued as a result of membership in a professional association not restricted to the public service severance pay If you do not apply for benefits under the CPP or QPP and if, in the opinion of the insurer, the medical evidence indicates that you would be eligible for CPP or QPP benefits, the insurer has the right to reduce your basic monthly LTD benefit by the estimated amount of your CPP or QPP entitlement. If you subsequently applied for CPP or QPP benefits and were declared ineligible, the reduction would cease, and the amounts previously withheld would be paid to you. Note, however, that if the insurer believes you have grounds for a successful appeal, the reduction may be continued until the conclusion of the appeal process. The treatment of benefits payable under the PSSA as offsets under the LTD component of the PSMIP is illustrated on the chart in Table A1 in the Appendix . If you cease to be employed in the public service, consult your departmental compensation services or the Public Service Pay Centre before opting for a public service pension. They can advise you how your choice of a public service pension will affect your monthly LTD benefit. What will happen to my Long-Term Disability benefits if I earn money in a rehabilitation program? While receiving benefits, you may participate in a rehabilitation program that the insurer has approved in writing. Such a program could be for vocational training or be a period of work for the purpose of rehabilitation. Depending on the circumstances, you may be able to remain in such a program for up to 24 months and still receive some benefits. Normally, the amount of your rehabilitation earnings will not be deducted from your monthly benefits unless your total income while working, together with any benefits you are receiving under the LTD plan, exceeds the current salary of your former position. What if I earn money from other employment? If you earn money from any employment that the insurer does not consider rehabilitative, your benefits will be reduced by the total amount of those earnings. What if I recover but become totally disabled again? If you were in receipt of LTD benefits, recovered from your disability, and then become totally disabled again, the elimination period will be waived according to how long you were back at work: for no more than one month, if the two periods of disability are due to unrelated causes for no more than six months, if the two periods of disability are due to related causes for no more than 12 months, if the two periods of disability are due to the same cause What happens if the group policy terminates? If the group policy were to terminate for any reason after your disability began, the insurer will continue to pay benefits as long as you remain totally disabled during a continuous period. Are my Long-Term Disability benefits subject to income tax? If you qualify for LTD benefits under the PSMIP, the amount you receive will be subject to income tax. After the end of each year, the insurer will send you a form that indicates the total amount of LTD benefits paid to you. The insurer does not automatically deduct taxes at source, except in the case of provincial taxes payable by Quebec residents. If you wish, the insurer will deduct taxes at source based on information you provide. The monthly premiums you pay while you are employed are not tax deductible from earnings. Note the following: if you become eligible for LTD benefits, the total amount of the premiums you have paid from the time you became a member of the PSMIP may be deducted for tax purposes from the amount of your disability income from the PSMIP if the total amount of premiums you have paid exceeds the LTD benefits you receive during the first taxation year in which your LTD benefits begin, you can carry over the excess amount to the following year Consult the Canada Revenue Agency for details if you become totally disabled. Your departmental compensation services or the Public Service Pay Centre can help you determine the amount of premiums you have paid. How do I submit a claim for Long-Term Disability benefits? The insurer is committed to making a prompt and accurate payment of benefits to which you may become entitled. If you become totally disabled and you believe that your disability will last long enough for you to qualify for benefits, notify your immediate supervisor or manager as soon as possible, who will take the next steps with the Public Service Pay Centre or departmental compensation services. To be considered for LTD benefits, the four forms listed below must be completed by you, your employer and your doctor (attending physician). These forms: are required for you to make a LTD benefits claim must be completed as clearly and fully as possible must be submitted with supporting documents to the insurer to begin processing your disability claim The forms should be sent 60 days prior to the end of the elimination period (13 weeks or the exhaustion of your sick leave, whichever is later). If you fail to submit the forms by this time limit, you may not be entitled to some or all benefit payments. Once the insurer receives the four completed forms, your claim will be processed within approximately 10 business days. All four forms are available on the insurer’s website : Employee’s Statement ( F54‑1011A‑57 ) Initial Disability Insurance Medical Statement (attending physician/medical provider) Employer’s Statement ( F54‑1012A‑57 Immediate Supervisor or Manager) Employer’s Statement ( F54‑1013A‑57 Compensation/Human Resource advisor) The forms can be downloaded, completed by hand or electronically, saved as an email attachment, and submitted electronically with electronic signatures to disabilityclaims@ia.ca or faxed or mailed to the insurer according to the instructions on each form. It is your responsibility to provide the insurer with sufficient medical evidence to support your total disability through these forms. If the information is not sufficient to establish that you are totally disabled, the insurer may arrange for you to be assessed by an independent medical specialist. Ask your doctor to provide a full, well-documented report that clearly details the medical evidence supporting the diagnosis and prognosis. Your doctor may wish to supplement the required information on the form with narrative reports and copies of any tests or investigations conducted. It is your responsibility to ensure that your doctor completes the medical statement and that it reaches the insurer without delay. If more than one doctor is involved in the assessment or treatment of your disabling condition (for example, a medical specialist), ask them all to supply the insurer with detailed medical reports. The insurer’s website also provides a checklist to help you complete your claim package. If your attending physician has difficulty completing the Initial Disability Insurance Medical Statement, contact the insurer to discuss your situation. If your immediate supervisor or manager is not available, your more senior manager may instead complete and submit the Employer’s Statement form (F54-1012A-57 Immediate Supervisor or Manager), provided they indicate to the insurer that they are doing so because of the unavailability of your direct supervisor or manager. In these cases, the name of the unavailable direct supervisor or manager should be indicated on the Employer’s Statement (F54-1012A-57 Immediate Supervisor or Manager) form, on a separate sheet of paper, or in the submission email. If completion by a more senior manager is not an option, contact the insurer . Submission before the end of the elimination period (13 weeks or the exhaustion of your sick leave, whichever is later) gives the insurer an opportunity to inform you of the decision on your claim prior to the first day your LTD benefits become payable. If the claim is approved, payment can be processed on that day. Any omissions or unclear statements in completed forms could result in a delay in settling your claim. Once the claim is received, the insurer has the right to: request additional medical information from your doctor arrange for your examination by independent medical specialists or other service provider(s) When will my Long-Term Disability benefits start? Your LTD benefits will be paid once you have used all your sick leave, provided that the elimination period of 13 weeks has been met. In most cases, the elimination period will consist of a complete absence from work for a period of 13 weeks. In certain circumstances, however, periods of absence due to the same illness or condition that occurred within the year immediately prior to the date of total disability can be used to calculate the elimination period. The first period of absence must have been for a continuous period of one month. These situations must be referred to the insurer for a decision on an individual basis.",
|
| 5018 |
"history": "",
|
| 5019 |
"last_amended": "",
|
| 5020 |
-
"current_to": "",
|
| 5021 |
-
"citation": "PSMIP Main Plan Booklet, “What is the Public Service Management Insurance Plan?”",
|
| 5022 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5023 |
},
|
| 5024 |
{
|
|
@@ -5035,8 +5035,8 @@
|
|
| 5035 |
"text": "Long-Term Disability insurance\nWhat is Long-Term Disability insurance? The Long-Term Disability (LTD) component of the PSMIP is an important part of the income-protection arrangements for members. LTD provides a monthly income benefit for employees who are unable to work for a lengthy period of time because of a totally disabling illness or injury. The employer and the employee share the cost of the premium for this insurance.",
|
| 5036 |
"history": "",
|
| 5037 |
"last_amended": "",
|
| 5038 |
-
"current_to": "",
|
| 5039 |
-
"citation": "PSMIP Main Plan Booklet, “Long-Term Disability insurance”",
|
| 5040 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5041 |
},
|
| 5042 |
{
|
|
@@ -5053,8 +5053,8 @@
|
|
| 5053 |
"text": "Am I eligible for Long-Term Disability benefits? If you are a member under the LTD insurance plan, you are eligible for benefits for up to 24 months if, as a result of a physical or mental impairment determined by a physician, you are unable to perform the essential functions of your regular job. At the end of this 24 month period, your benefits will be continued if you remain totally disabled and are unable to earn two thirds of the current salary of the position you held before you became disabled. Your LTD benefits will continue as long as you remain totally disabled. Benefits will not continue beyond your 65 th birthday. While you are receiving LTD benefits, you must be under the active care of a physician who is a registered specialist in the field of medicine related to your disabling condition. You must also be receiving medical treatment or participating in a program of rehabilitation approved by the insurer. You are not eligible for benefits if: your disability is the result of a mental or physical impairment that existed before you became insured: this exclusion is lifted if you complete a continuous period of 90 days of active employment while insured for LTD, or after you have been insured for LTD for two years, whichever comes first your disability results from or is related to: a normal pregnancy (without severe complications) commission of a felony self-inflicted injury a mental or physical impairment suffered while on active duty with any armed force your disability results from or is related to an act of declared or undeclared war; this exclusion does not apply to persons who become totally disabled in this way while outside Canada at the direction of the employer Note: If you become disabled, contact your departmental compensation services or the Public Service Pay Centre , even if you are unsure whether or not you qualify for LTD benefits.",
|
| 5054 |
"history": "",
|
| 5055 |
"last_amended": "",
|
| 5056 |
-
"current_to": "",
|
| 5057 |
-
"citation": "PSMIP Main Plan Booklet, “Long-Term Disability insurance”",
|
| 5058 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5059 |
},
|
| 5060 |
{
|
|
@@ -5071,8 +5071,8 @@
|
|
| 5071 |
"text": "What happens if I retire before using all my sick leave credits? If you retire voluntarily before exhausting your accumulated sick leave credits, your unused sick leave credits will still be counted and used to determine the date that your LTD benefits will begin. If you are considering terminating your employment prior to exhausting your sick leave credits, contact your departmental compensation services or the Public Service Pay Centre to see if your termination will be considered as a voluntary termination for LTD purposes.",
|
| 5072 |
"history": "",
|
| 5073 |
"last_amended": "",
|
| 5074 |
-
"current_to": "",
|
| 5075 |
-
"citation": "PSMIP Main Plan Booklet, “Long-Term Disability insurance”",
|
| 5076 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5077 |
},
|
| 5078 |
{
|
|
@@ -5089,8 +5089,8 @@
|
|
| 5089 |
"text": "How are my Long-Term Disability benefits calculated? If you become totally disabled, your gross annual benefit will be 70% of your insured annual salary at the end of the elimination period (13 weeks or the exhaustion of your sick leave, whichever is later). The definition of salary is the same as that used for the Supplementary Death Benefit under the PSSA Your insured annual salary for the purposes of LTD is equal to your annual salary at the end of the elimination period if it is a multiple of $250, or the next multiple of $250 above that amount. A member who works part time will have the insured annual salary based on assigned hours of work. Payments are made monthly. Other income, whether it be income received as a result of being in receipt of a PSSA benefit or a disability benefit under the Canada Pension Plan (CPP) or Quebec Pension Plan (QPP), will be deducted as an offset from your LTD benefits. Your net benefit, which is the amount payable to you after other income has been deducted as an offset, will be subject to an annual increase related to increases in the cost of living, up to a maximum of 3%. Any retroactive salary increase approved after the date your LTD benefits become payable affects your insured salary and benefit level only when the effective date of the increase precedes the date on which your LTD benefits began. For example, a retroactive salary increase approved in April that took effect from February 10 would affect your LTD benefits only if your benefits began on February 11 or later. Table 1: example of benefit calculation 1. Your annual salary at end of elimination period $47,925 2. Your insured salary (annual salary taken to next highest multiple of $250) $48,000 3. Your gross annual LTD benefit (70% of $48,000) $33,600 4. Less other income you are receiving PSSA benefit $14,000 CPP disability benefit $8,000 5. Your net annual LTD benefit $11,600 6. The amount of monthly LTD payments ($11,600 divided by 12) $967 If the cost of living rose by 2% in the year following the start of your benefits, your net monthly LTD benefit of $967 would be increased by 2% to $986.34 on January 1 following the effective date your benefits start. Your PSSA and CPP or QPP benefits would be adjusted to reflect increases in the cost of living. You would receive the full increase under those plans, and the increase would not be deducted from your LTD benefit. On January 1 of each subsequent year, your LTD benefit would be further increased to reflect increases in the cost of living, up to a maximum of 3% annually.",
|
| 5090 |
"history": "",
|
| 5091 |
"last_amended": "",
|
| 5092 |
-
"current_to": "",
|
| 5093 |
-
"citation": "PSMIP Main Plan Booklet, “Long-Term Disability insurance”",
|
| 5094 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5095 |
},
|
| 5096 |
{
|
|
@@ -5107,8 +5107,8 @@
|
|
| 5107 |
"text": "Offsets: what types of income will be deducted from my Long-Term Disability benefits? The following examples illustrate the most common types of income that would be deducted from your LTD benefits: benefits received under the PSSA LTD benefits under the CPP or the QPP, excluding benefits payable to or on behalf of your dependants as a result of your disability benefits under the or similar benefits under a plan of the federal government or any other government LTD benefits paid or available under another group insurance plan, or under a policy issued to you as a result of your membership in a public service employee union or association disability insurance benefits under the legislation of any government, such as income replacement benefits under a no-fault automobile insurance plan loss-of-income benefits received under a third-party damage award The following are examples of income that would not be deducted from your Long-Term Disability benefits: increases related to the cost of living indexation under the PSSA, CPP or QPP return of superannuation contributions where no pension entitlement is available benefits received under a purely private and personal insurance policy, or under a policy issued as a result of membership in a professional association not restricted to the public service severance pay If you do not apply for benefits under the CPP or QPP and if, in the opinion of the insurer, the medical evidence indicates that you would be eligible for CPP or QPP benefits, the insurer has the right to reduce your basic monthly LTD benefit by the estimated amount of your CPP or QPP entitlement. If you subsequently applied for CPP or QPP benefits and were declared ineligible, the reduction would cease, and the amounts previously withheld would be paid to you. Note, however, that if the insurer believes you have grounds for a successful appeal, the reduction may be continued until the conclusion of the appeal process. The treatment of benefits payable under the PSSA as offsets under the LTD component of the PSMIP is illustrated on the chart in Table A1 in the Appendix . If you cease to be employed in the public service, consult your departmental compensation services or the Public Service Pay Centre before opting for a public service pension. They can advise you how your choice of a public service pension will affect your monthly LTD benefit.",
|
| 5108 |
"history": "",
|
| 5109 |
"last_amended": "",
|
| 5110 |
-
"current_to": "",
|
| 5111 |
-
"citation": "PSMIP Main Plan Booklet, “Long-Term Disability insurance”",
|
| 5112 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5113 |
},
|
| 5114 |
{
|
|
@@ -5125,8 +5125,8 @@
|
|
| 5125 |
"text": "What will happen to my Long-Term Disability benefits if I earn money in a rehabilitation program? While receiving benefits, you may participate in a rehabilitation program that the insurer has approved in writing. Such a program could be for vocational training or be a period of work for the purpose of rehabilitation. Depending on the circumstances, you may be able to remain in such a program for up to 24 months and still receive some benefits. Normally, the amount of your rehabilitation earnings will not be deducted from your monthly benefits unless your total income while working, together with any benefits you are receiving under the LTD plan, exceeds the current salary of your former position.\nWhat if I earn money from other employment? If you earn money from any employment that the insurer does not consider rehabilitative, your benefits will be reduced by the total amount of those earnings.\nWhat if I recover but become totally disabled again? If you were in receipt of LTD benefits, recovered from your disability, and then become totally disabled again, the elimination period will be waived according to how long you were back at work: for no more than one month, if the two periods of disability are due to unrelated causes for no more than six months, if the two periods of disability are due to related causes for no more than 12 months, if the two periods of disability are due to the same cause\nWhat happens if the group policy terminates? If the group policy were to terminate for any reason after your disability began, the insurer will continue to pay benefits as long as you remain totally disabled during a continuous period.",
|
| 5126 |
"history": "",
|
| 5127 |
"last_amended": "",
|
| 5128 |
-
"current_to": "",
|
| 5129 |
-
"citation": "PSMIP Main Plan Booklet, “Long-Term Disability insurance”",
|
| 5130 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5131 |
},
|
| 5132 |
{
|
|
@@ -5143,8 +5143,8 @@
|
|
| 5143 |
"text": "Are my Long-Term Disability benefits subject to income tax? If you qualify for LTD benefits under the PSMIP, the amount you receive will be subject to income tax. After the end of each year, the insurer will send you a form that indicates the total amount of LTD benefits paid to you. The insurer does not automatically deduct taxes at source, except in the case of provincial taxes payable by Quebec residents. If you wish, the insurer will deduct taxes at source based on information you provide. The monthly premiums you pay while you are employed are not tax deductible from earnings. Note the following: if you become eligible for LTD benefits, the total amount of the premiums you have paid from the time you became a member of the PSMIP may be deducted for tax purposes from the amount of your disability income from the PSMIP if the total amount of premiums you have paid exceeds the LTD benefits you receive during the first taxation year in which your LTD benefits begin, you can carry over the excess amount to the following year Consult the Canada Revenue Agency for details if you become totally disabled. Your departmental compensation services or the Public Service Pay Centre can help you determine the amount of premiums you have paid.",
|
| 5144 |
"history": "",
|
| 5145 |
"last_amended": "",
|
| 5146 |
-
"current_to": "",
|
| 5147 |
-
"citation": "PSMIP Main Plan Booklet, “Long-Term Disability insurance”",
|
| 5148 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5149 |
},
|
| 5150 |
{
|
|
@@ -5161,8 +5161,8 @@
|
|
| 5161 |
"text": "How do I submit a claim for Long-Term Disability benefits? The insurer is committed to making a prompt and accurate payment of benefits to which you may become entitled. If you become totally disabled and you believe that your disability will last long enough for you to qualify for benefits, notify your immediate supervisor or manager as soon as possible, who will take the next steps with the Public Service Pay Centre or departmental compensation services. To be considered for LTD benefits, the four forms listed below must be completed by you, your employer and your doctor (attending physician). These forms: are required for you to make a LTD benefits claim must be completed as clearly and fully as possible must be submitted with supporting documents to the insurer to begin processing your disability claim The forms should be sent 60 days prior to the end of the elimination period (13 weeks or the exhaustion of your sick leave, whichever is later). If you fail to submit the forms by this time limit, you may not be entitled to some or all benefit payments. Once the insurer receives the four completed forms, your claim will be processed within approximately 10 business days. All four forms are available on the insurer’s website : Employee’s Statement ( F54‑1011A‑57 ) Initial Disability Insurance Medical Statement (attending physician/medical provider) Employer’s Statement ( F54‑1012A‑57 Immediate Supervisor or Manager) Employer’s Statement ( F54‑1013A‑57 Compensation/Human Resource advisor) The forms can be downloaded, completed by hand or electronically, saved as an email attachment, and submitted electronically with electronic signatures to disabilityclaims@ia.ca or faxed or mailed to the insurer according to the instructions on each form. It is your responsibility to provide the insurer with sufficient medical evidence to support your total disability through these forms. If the information is not sufficient to establish that you are totally disabled, the insurer may arrange for you to be assessed by an independent medical specialist. Ask your doctor to provide a full, well-documented report that clearly details the medical evidence supporting the diagnosis and prognosis. Your doctor may wish to supplement the required information on the form with narrative reports and copies of any tests or investigations conducted. It is your responsibility to ensure that your doctor completes the medical statement and that it reaches the insurer without delay. If more than one doctor is involved in the assessment or treatment of your disabling condition (for example, a medical specialist), ask them all to supply the insurer with detailed medical reports. The insurer’s website also provides a checklist to help you complete your claim package. If your attending physician has difficulty completing the Initial Disability Insurance Medical Statement, contact the insurer to discuss your situation. If your immediate supervisor or manager is not available, your more senior manager may instead complete and submit the Employer’s Statement form (F54-1012A-57 Immediate Supervisor or Manager), provided they indicate to the insurer that they are doing so because of the unavailability of your direct supervisor or manager. In these cases, the name of the unavailable direct supervisor or manager should be indicated on the Employer’s Statement (F54-1012A-57 Immediate Supervisor or Manager) form, on a separate sheet of paper, or in the submission email. If completion by a more senior manager is not an option, contact the insurer . Submission before the end of the elimination period (13 weeks or the exhaustion of your sick leave, whichever is later) gives the insurer an opportunity to inform you of the decision on your claim prior to the first day your LTD benefits become payable. If the claim is approved, payment can be processed on that day. Any omissions or unclear statements in completed forms could result in a delay in settling your claim. Once the claim is received, the insurer has the right to: request additional medical information from your doctor arrange for your examination by independent medical specialists or other service provider(s)",
|
| 5162 |
"history": "",
|
| 5163 |
"last_amended": "",
|
| 5164 |
-
"current_to": "",
|
| 5165 |
-
"citation": "PSMIP Main Plan Booklet, “Long-Term Disability insurance”",
|
| 5166 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5167 |
},
|
| 5168 |
{
|
|
@@ -5179,8 +5179,8 @@
|
|
| 5179 |
"text": "When will my Long-Term Disability benefits start? Your LTD benefits will be paid once you have used all your sick leave, provided that the elimination period of 13 weeks has been met. In most cases, the elimination period will consist of a complete absence from work for a period of 13 weeks. In certain circumstances, however, periods of absence due to the same illness or condition that occurred within the year immediately prior to the date of total disability can be used to calculate the elimination period. The first period of absence must have been for a continuous period of one month. These situations must be referred to the insurer for a decision on an individual basis.",
|
| 5180 |
"history": "",
|
| 5181 |
"last_amended": "",
|
| 5182 |
-
"current_to": "",
|
| 5183 |
-
"citation": "PSMIP Main Plan Booklet, “Long-Term Disability insurance”",
|
| 5184 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5185 |
},
|
| 5186 |
{
|
|
@@ -5197,8 +5197,8 @@
|
|
| 5197 |
"text": "What other insurance is available to me?\nThe PSMIP provides public service employees who are excluded from the collective bargaining process, or their families, with benefits in the event of accident or death. The PSMIP offers four types of optional insurance, which you may obtain at your own expense.\nTo be covered for optional insurance, you must complete an application form. You can apply for coverage under the following:\n- Basic Life Insurance: a lump-sum benefit roughly equal to your annual salary, payable to your beneficiary in the event of your death from any cause\n- Supplementary Life Insurance: an additional layer of insurance identical to that provided by Basic Life Insurance\n- Accidental Death and Dismemberment (AD&D) Insurance: a lump-sum benefit payable to your beneficiary if you are killed in an accident (on or off the job), or to you directly if you are maimed in an accident\n- Dependants’ Insurance: a lump-sum benefit to you in the event of the death or dismemberment of one or more of your dependants\nApplications for Basic Life and Dependants’ Insurance made more than two months after you or your dependants become eligible to join the PSMIP must be accompanied by evidence of insurability that is satisfactory to the insurer. For example, a member who enters into a relationship that satisfies the definition of spouse, and who does not apply for Dependants’ Insurance within two months of having satisfied the requirements of the definition, must provide evidence of the spouse’s insurability in a form that is satisfactory to the insurer when submitting an application.\nThe applications for Supplementary Life Insurance may be made at any time and must be accompanied by evidence of insurability that is satisfactory to the insurer.",
|
| 5198 |
"history": "",
|
| 5199 |
"last_amended": "",
|
| 5200 |
-
"current_to": "",
|
| 5201 |
-
"citation": "PSMIP Main Plan Booklet, “What other insurance is available to me?”",
|
| 5202 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5203 |
},
|
| 5204 |
{
|
|
@@ -5215,8 +5215,8 @@
|
|
| 5215 |
"text": "Life insurance benefits payable under the PSMIP are in addition to any Supplementary Death Benefit payable under the PSSA.",
|
| 5216 |
"history": "",
|
| 5217 |
"last_amended": "",
|
| 5218 |
-
"current_to": "",
|
| 5219 |
-
"citation": "PSMIP Main Plan Booklet, “What other insurance is available to me?”",
|
| 5220 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5221 |
},
|
| 5222 |
{
|
|
@@ -5233,8 +5233,8 @@
|
|
| 5233 |
"text": "Basic Life Insurance How is Basic Life Insurance calculated? Your Basic Life Insurance is based on your salary adjusted to the nearest $1,000 (for example, all salaries in the range of $47,500.01 to $48,500.00 would be rounded to $48,000). This $48,000 figure is the adjusted salary. The definition of salary is the same as that used for the Supplementary Death Benefit under the PSSA. If you are a part-time employee, your annual salary for the purposes of insurance is determined by reducing the full-time salary for your occupational group and level, in proportion to the relationship of your assigned hours of work to normal full-time hours in that group. That amount is then rounded to the nearest $1,000. The amount of Basic Life Insurance is one year’s adjusted salary (as described above) up to age 65. On the first of the month following your 66 th birthday, the basic amount becomes 90% of one year’s adjusted salary. It becomes 80% of one year’s adjusted salary one year later, and so on. Coverage will never be less than 10% of one year’s adjusted salary while you remain a member of the PSMIP. The amount of this insurance will be revised immediately to reflect any changes in salary due to annual increments, economic increases or promotions. In the case of a retroactive salary change, coverage will change on the first of the month following the month in which the change was authorized. The premium rates for Basic Life Insurance are related to your sex and age. You are responsible for paying 100% of the premiums. If you die from any cause while insured under Basic Life Insurance or Supplementary Life Insurance, the amount of life insurance in force at that time will be paid to your beneficiary. You may name your own beneficiary. Your beneficiary may be: one person or more than one person a minor a charitable organization your estate Your beneficiary would receive any life (Basic and Supplementary) insurance and accidental death benefits payable under the policy. To change beneficiaries at any time (subject to any applicable provincial or territorial law), complete the PWGSC-TPSGC 2028-1 - Public Service Management Insurance Plan form. If you do not name a beneficiary, or if your beneficiary predeceases you, benefits will be paid to your estate.",
|
| 5234 |
"history": "",
|
| 5235 |
"last_amended": "",
|
| 5236 |
-
"current_to": "",
|
| 5237 |
-
"citation": "PSMIP Main Plan Booklet, “What other insurance is available to me?”",
|
| 5238 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5239 |
},
|
| 5240 |
{
|
|
@@ -5251,8 +5251,8 @@
|
|
| 5251 |
"text": "Supplementary Life Insurance Is there any additional insurance available? If you decide to take Basic Life Insurance under the PSMIP, you may also elect to take Supplementary Life Insurance, subject to the insurer’s approval. The amount of Supplementary Life Insurance is equal to the amount of Basic Life Insurance, and together these would bring your total protection to twice your adjusted salary. Evidence of your insurability that is satisfactory to the insurer is needed for Supplementary Life Insurance, no matter when you apply. As for Basic Life Insurance, the premium rates for Supplementary Life Insurance are related to your sex and age.",
|
| 5252 |
"history": "",
|
| 5253 |
"last_amended": "",
|
| 5254 |
-
"current_to": "",
|
| 5255 |
-
"citation": "PSMIP Main Plan Booklet, “What other insurance is available to me?”",
|
| 5256 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5257 |
},
|
| 5258 |
{
|
|
@@ -5269,8 +5269,8 @@
|
|
| 5269 |
"text": "Accidental Death and Dismemberment (AD&D) Insurance How does AD&D Insurance work? The maximum principal sum available through AD&D Insurance is $250,000. It is available in units of $25,000. You may select any number of units, up to 10, unless you are a part-time employee, in which case the maximum number of units available to you depends on your assigned hours of work. Your departmental compensation services or the Public Service Pay Centre can provide full details. If you sustain any of the losses listed in Table 2 solely through external accidental means, the following benefits will be paid in addition to any life insurance or LTD benefits payable under the LTD Plan: Table 2: schedule of amounts of insurance Type of AD&D Benefit Life Principal sum Both hands or both feet Principal sum Sight of both eyes Principal sum One hand and one foot Principal sum One hand or one foot and sight of one eye Principal sum Speech and hearing Principal sum Quadriplegia (total and irreversible paralysis of all four limbs) Principal sum Paraplegia (total and irreversible paralysis of both lower limbs) Principal sum Hemiplegia (total and irreversible paralysis of one arm and one leg on the same side of the body) Principal sum One leg or one arm Three quarters of the principal sum One hand or one foot Half of the principal sum Speech or hearing Half of the principal sum Sight of one eye Half of the principal sum Thumb and index finger (of the same hand) One quarter of the principal sum As an example, if you carried five units of this insurance and were killed in a car accident, your beneficiary would receive $125,000 (the principal sum). If, instead, you lost one foot, you would receive $62,500 (half the principal sum). Losses must be suffered within 90 days from the date of the accident. The total amount payable for all losses sustained in any one accident is limited to the principal sum. These benefits are not payable in the event of loss arising from suicide or self-inflicted injury. Benefits are not payable if the loss results from war or any act of war, unless the incident occurs while you are outside Canada at the direction of the employer, such as on a posting, on assignment or in travel status. Benefits are also not payable if the loss was caused by disease, bacterial infection, taking poison, or participating in any riot or civil strife.",
|
| 5270 |
"history": "",
|
| 5271 |
"last_amended": "",
|
| 5272 |
-
"current_to": "",
|
| 5273 |
-
"citation": "PSMIP Main Plan Booklet, “What other insurance is available to me?”",
|
| 5274 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5275 |
},
|
| 5276 |
{
|
|
@@ -5287,8 +5287,8 @@
|
|
| 5287 |
"text": "Dependants’ Insurance What kind of coverage is available for my dependants? This coverage consists of life insurance and AD&D Insurance for your dependants, who are defined as: your spouse that is, a person to whom you are legally married or a person who resides with you and has resided with you for a period of at least one year and whom you have publicly represented as your spouse all your unmarried children over the age of 14 days but not yet 21 years old (25 in the case of full-time students enrolled in a school or university) who are not employed on a regular, full-time basis and who are dependent on you for support The amounts of insurance are as follows: life insurance of $5,000 on the life of your spouse and $2,500 on the life of each child: on the first of the month following your 65 th birthday, all amounts are reduced to $1,250, if one of your dependants dies from any cause while insured, the amount of life insurance in force on the life of the dependant will be paid to you AD&D Insurance in a principal sum of $5,000 on the life of your spouse and $2,500 on the life of each child: the principal sums are reduced to $1,250 after you reach age 65; the proportions of the principal sum payable for a loss suffered by one of your insured dependants, and all other conditions, are identical to those of the AD&D Insurance available to you as described in Table 2",
|
| 5288 |
"history": "",
|
| 5289 |
"last_amended": "",
|
| 5290 |
-
"current_to": "",
|
| 5291 |
-
"citation": "PSMIP Main Plan Booklet, “What other insurance is available to me?”",
|
| 5292 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5293 |
},
|
| 5294 |
{
|
|
@@ -5305,8 +5305,8 @@
|
|
| 5305 |
"text": "Living Benefit What is the Living Benefit? The Living Benefit, which came into effect in February 1994 , provides members who are terminally ill with a portion of the life insurance benefit that would otherwise be payable to their beneficiary on their death. What is a terminal condition? A terminal condition means an injury or illness that is expected to result in death within 24 months and from which there is no reasonable prospect of recovery as determined by the insurer based on medical evidence provided. How is the Living Benefit calculated? The amount payable is 50% of the total amount of your life insurance or $50,000, whichever is less. How do I apply for the Living Benefit? To request the Living Benefit, contact the insurer. You will be required to provide all medical information necessary to permit the insurer to determine whether you are suffering from a terminal condition as defined in the PSMIP. You and your beneficiary will be required to sign a Living Benefit Agreement. Are there any restrictions? A Living Benefit is not payable if all or a portion of your life insurance is to be paid to your former spouse as part of a divorce agreement. If I receive a Living Benefit, what effect will it have on the amount payable on my death? The amount payable as a Living Benefit will be deducted from the amount otherwise payable under the PSMIP to your beneficiary. No interest will be charged.",
|
| 5306 |
"history": "",
|
| 5307 |
"last_amended": "",
|
| 5308 |
-
"current_to": "",
|
| 5309 |
-
"citation": "PSMIP Main Plan Booklet, “What other insurance is available to me?”",
|
| 5310 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5311 |
},
|
| 5312 |
{
|
|
@@ -5323,8 +5323,8 @@
|
|
| 5323 |
"text": "Basic Life Insurance\nHow is Basic Life Insurance calculated? Your Basic Life Insurance is based on your salary adjusted to the nearest $1,000 (for example, all salaries in the range of $47,500.01 to $48,500.00 would be rounded to $48,000). This $48,000 figure is the adjusted salary. The definition of salary is the same as that used for the Supplementary Death Benefit under the PSSA. If you are a part-time employee, your annual salary for the purposes of insurance is determined by reducing the full-time salary for your occupational group and level, in proportion to the relationship of your assigned hours of work to normal full-time hours in that group. That amount is then rounded to the nearest $1,000. The amount of Basic Life Insurance is one year’s adjusted salary (as described above) up to age 65. On the first of the month following your 66 th birthday, the basic amount becomes 90% of one year’s adjusted salary. It becomes 80% of one year’s adjusted salary one year later, and so on. Coverage will never be less than 10% of one year’s adjusted salary while you remain a member of the PSMIP. The amount of this insurance will be revised immediately to reflect any changes in salary due to annual increments, economic increases or promotions. In the case of a retroactive salary change, coverage will change on the first of the month following the month in which the change was authorized. The premium rates for Basic Life Insurance are related to your sex and age. You are responsible for paying 100% of the premiums. If you die from any cause while insured under Basic Life Insurance or Supplementary Life Insurance, the amount of life insurance in force at that time will be paid to your beneficiary. You may name your own beneficiary. Your beneficiary may be: one person or more than one person a minor a charitable organization your estate Your beneficiary would receive any life (Basic and Supplementary) insurance and accidental death benefits payable under the policy. To change beneficiaries at any time (subject to any applicable provincial or territorial law), complete the PWGSC-TPSGC 2028-1 - Public Service Management Insurance Plan form. If you do not name a beneficiary, or if your beneficiary predeceases you, benefits will be paid to your estate.",
|
| 5324 |
"history": "",
|
| 5325 |
"last_amended": "",
|
| 5326 |
-
"current_to": "",
|
| 5327 |
-
"citation": "PSMIP Main Plan Booklet, “Basic Life Insurance”",
|
| 5328 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5329 |
},
|
| 5330 |
{
|
|
@@ -5341,8 +5341,8 @@
|
|
| 5341 |
"text": "Supplementary Life Insurance\nIs there any additional insurance available? If you decide to take Basic Life Insurance under the PSMIP, you may also elect to take Supplementary Life Insurance, subject to the insurer’s approval. The amount of Supplementary Life Insurance is equal to the amount of Basic Life Insurance, and together these would bring your total protection to twice your adjusted salary. Evidence of your insurability that is satisfactory to the insurer is needed for Supplementary Life Insurance, no matter when you apply. As for Basic Life Insurance, the premium rates for Supplementary Life Insurance are related to your sex and age.",
|
| 5342 |
"history": "",
|
| 5343 |
"last_amended": "",
|
| 5344 |
-
"current_to": "",
|
| 5345 |
-
"citation": "PSMIP Main Plan Booklet, “Supplementary Life Insurance”",
|
| 5346 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5347 |
},
|
| 5348 |
{
|
|
@@ -5359,8 +5359,8 @@
|
|
| 5359 |
"text": "Accidental Death and Dismemberment (AD&D) Insurance\nHow does AD&D Insurance work? The maximum principal sum available through AD&D Insurance is $250,000. It is available in units of $25,000. You may select any number of units, up to 10, unless you are a part-time employee, in which case the maximum number of units available to you depends on your assigned hours of work. Your departmental compensation services or the Public Service Pay Centre can provide full details. If you sustain any of the losses listed in Table 2 solely through external accidental means, the following benefits will be paid in addition to any life insurance or LTD benefits payable under the LTD Plan: Table 2: schedule of amounts of insurance Type of AD&D Benefit Life Principal sum Both hands or both feet Principal sum Sight of both eyes Principal sum One hand and one foot Principal sum One hand or one foot and sight of one eye Principal sum Speech and hearing Principal sum Quadriplegia (total and irreversible paralysis of all four limbs) Principal sum Paraplegia (total and irreversible paralysis of both lower limbs) Principal sum Hemiplegia (total and irreversible paralysis of one arm and one leg on the same side of the body) Principal sum One leg or one arm Three quarters of the principal sum One hand or one foot Half of the principal sum Speech or hearing Half of the principal sum Sight of one eye Half of the principal sum Thumb and index finger (of the same hand) One quarter of the principal sum As an example, if you carried five units of this insurance and were killed in a car accident, your beneficiary would receive $125,000 (the principal sum). If, instead, you lost one foot, you would receive $62,500 (half the principal sum). Losses must be suffered within 90 days from the date of the accident. The total amount payable for all losses sustained in any one accident is limited to the principal sum. These benefits are not payable in the event of loss arising from suicide or self-inflicted injury. Benefits are not payable if the loss results from war or any act of war, unless the incident occurs while you are outside Canada at the direction of the employer, such as on a posting, on assignment or in travel status. Benefits are also not payable if the loss was caused by disease, bacterial infection, taking poison, or participating in any riot or civil strife.",
|
| 5360 |
"history": "",
|
| 5361 |
"last_amended": "",
|
| 5362 |
-
"current_to": "",
|
| 5363 |
-
"citation": "PSMIP Main Plan Booklet, “Accidental Death and Dismemberment (AD&D) Insurance”",
|
| 5364 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5365 |
},
|
| 5366 |
{
|
|
@@ -5377,8 +5377,8 @@
|
|
| 5377 |
"text": "Dependants’ Insurance\nWhat kind of coverage is available for my dependants? This coverage consists of life insurance and AD&D Insurance for your dependants, who are defined as: your spouse that is, a person to whom you are legally married or a person who resides with you and has resided with you for a period of at least one year and whom you have publicly represented as your spouse all your unmarried children over the age of 14 days but not yet 21 years old (25 in the case of full-time students enrolled in a school or university) who are not employed on a regular, full-time basis and who are dependent on you for support The amounts of insurance are as follows: life insurance of $5,000 on the life of your spouse and $2,500 on the life of each child: on the first of the month following your 65 th birthday, all amounts are reduced to $1,250, if one of your dependants dies from any cause while insured, the amount of life insurance in force on the life of the dependant will be paid to you AD&D Insurance in a principal sum of $5,000 on the life of your spouse and $2,500 on the life of each child: the principal sums are reduced to $1,250 after you reach age 65; the proportions of the principal sum payable for a loss suffered by one of your insured dependants, and all other conditions, are identical to those of the AD&D Insurance available to you as described in Table 2",
|
| 5378 |
"history": "",
|
| 5379 |
"last_amended": "",
|
| 5380 |
-
"current_to": "",
|
| 5381 |
-
"citation": "PSMIP Main Plan Booklet, “Dependants’ Insurance”",
|
| 5382 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5383 |
},
|
| 5384 |
{
|
|
@@ -5395,8 +5395,8 @@
|
|
| 5395 |
"text": "Living Benefit\nWhat is the Living Benefit? The Living Benefit, which came into effect in February 1994 , provides members who are terminally ill with a portion of the life insurance benefit that would otherwise be payable to their beneficiary on their death.\nWhat is a terminal condition? A terminal condition means an injury or illness that is expected to result in death within 24 months and from which there is no reasonable prospect of recovery as determined by the insurer based on medical evidence provided.\nHow is the Living Benefit calculated? The amount payable is 50% of the total amount of your life insurance or $50,000, whichever is less.\nHow do I apply for the Living Benefit? To request the Living Benefit, contact the insurer. You will be required to provide all medical information necessary to permit the insurer to determine whether you are suffering from a terminal condition as defined in the PSMIP. You and your beneficiary will be required to sign a Living Benefit Agreement.\nAre there any restrictions? A Living Benefit is not payable if all or a portion of your life insurance is to be paid to your former spouse as part of a divorce agreement. If I receive a Living Benefit, what effect will it have on the amount payable on my death? The amount payable as a Living Benefit will be deducted from the amount otherwise payable under the PSMIP to your beneficiary. No interest will be charged.",
|
| 5396 |
"history": "",
|
| 5397 |
"last_amended": "",
|
| 5398 |
-
"current_to": "",
|
| 5399 |
-
"citation": "PSMIP Main Plan Booklet, “Living Benefit”",
|
| 5400 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5401 |
},
|
| 5402 |
{
|
|
@@ -5413,8 +5413,8 @@
|
|
| 5413 |
"text": "Termination of employment\nWhat happens to my insurance coverage when I cease to be employed in the public service? If you leave the public service, your life insurance will cease, subject to a 31-day extension period. During that extension period, you will be able to obtain an individual private life insurance policy, including some types of term insurance regularly issued by your insurer without medical examination and regardless of your state of health. Such a policy: may be for any amount equal to or less than the amount for which you were last insured under the group policy will be available at the insurer’s standard rates for your age, based on any special non-medical hazards (for example, hazards that an aircraft pilot could experience) to which you may be exposed If your own PSMIP Basic Life Insurance ceases, Dependants’ Insurance will also cease. However, your Dependants’ Life Insurance may also be converted to an individual private policy. AD&D and LTD Insurance cannot be converted to private policies. They terminate on the day you leave the public service. You must make your own arrangements directly with the insurer to convert your insurance to a private policy.",
|
| 5414 |
"history": "",
|
| 5415 |
"last_amended": "",
|
| 5416 |
-
"current_to": "",
|
| 5417 |
-
"citation": "PSMIP Main Plan Booklet, “Termination of employment”",
|
| 5418 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5419 |
},
|
| 5420 |
{
|
|
@@ -5431,8 +5431,8 @@
|
|
| 5431 |
"text": "What happens to my insurance coverage when I cease to be employed in the public service?\nIf you leave the public service, your life insurance will cease, subject to a 31-day extension period. During that extension period, you will be able to obtain an individual private life insurance policy, including some types of term insurance regularly issued by your insurer without medical examination and regardless of your state of health. Such a policy:\n- may be for any amount equal to or less than the amount for which you were last insured under the group policy\n- will be available at the insurer’s standard rates for your age, based on any special non-medical hazards (for example, hazards that an aircraft pilot could experience) to which you may be exposed\nIf your own PSMIP Basic Life Insurance ceases, Dependants’ Insurance will also cease. However, your Dependants’ Life Insurance may also be converted to an individual private policy. AD&D and LTD Insurance cannot be converted to private policies. They terminate on the day you leave the public service.\nYou must make your own arrangements directly with the insurer to convert your insurance to a private policy.",
|
| 5432 |
"history": "",
|
| 5433 |
"last_amended": "",
|
| 5434 |
-
"current_to": "",
|
| 5435 |
-
"citation": "PSMIP Main Plan Booklet, “What happens to my insurance coverage when I cease to be employed in the public service?”",
|
| 5436 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5437 |
},
|
| 5438 |
{
|
|
@@ -5449,8 +5449,8 @@
|
|
| 5449 |
"text": "General information\nWhat is the waiver of premium benefit? If you become totally disabled to the point where you qualify for LTD benefits, or where you would qualify if you belonged to the LTD portion of the PSMIP your optional life and LTD insurance will be continued in force without payment of further premiums from the date your salary ceases until your recovery, death or 65 th birthday, whichever comes first. This benefit is subject to proof of total disability. You must provide this proof when you first make a claim and from time to time as set forth in the policy.\nCan I appeal the insurer’s decision? If you disagree with the insurer’s decision on an insurance application or a claim for your LTD benefits, you can appeal to the insurer. If the insurer’s decision remains unchanged, the Board of Trustees can review your case. The Board can only make recommendations to the insurer and cannot overrule their decisions. If you want the Board of Trustees to review your case, write to the following: Secretary to the PSMIP Board of Trustees Employee Relations and Total Compensation Sector Treasury Board of Canada Secretariat 90 Elgin St 3 rd Floor Ottawa ON K1A 0R5\nPrivacy and protection of personal information Who can access personal information in my file? Personal information used to adjudicate your claim for LTD benefits is held by the insurer. Authorized employees or other persons working for or on behalf of the insurer are allowed access to this information while performing their duties, as outlined above. You have the right to have access to the information on file and correct it if needed. You must make any such request in writing to the insurer.",
|
| 5450 |
"history": "",
|
| 5451 |
"last_amended": "",
|
| 5452 |
-
"current_to": "",
|
| 5453 |
-
"citation": "PSMIP Main Plan Booklet, “General information”",
|
| 5454 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5455 |
},
|
| 5456 |
{
|
|
@@ -5467,8 +5467,8 @@
|
|
| 5467 |
"text": "What is the waiver of premium benefit?\nIf you become totally disabled to the point where you qualify for LTD benefits, or where you would qualify if you belonged to the LTD portion of the PSMIP your optional life and LTD insurance will be continued in force without payment of further premiums from the date your salary ceases until your recovery, death or 65 th birthday, whichever comes first. This benefit is subject to proof of total disability. You must provide this proof when you first make a claim and from time to time as set forth in the policy.",
|
| 5468 |
"history": "",
|
| 5469 |
"last_amended": "",
|
| 5470 |
-
"current_to": "",
|
| 5471 |
-
"citation": "PSMIP Main Plan Booklet, “What is the waiver of premium benefit?”",
|
| 5472 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5473 |
},
|
| 5474 |
{
|
|
@@ -5485,8 +5485,8 @@
|
|
| 5485 |
"text": "Can I appeal the insurer’s decision?\nIf you disagree with the insurer’s decision on an insurance application or a claim for your LTD benefits, you can appeal to the insurer. If the insurer’s decision remains unchanged, the Board of Trustees can review your case. The Board can only make recommendations to the insurer and cannot overrule their decisions. If you want the Board of Trustees to review your case, write to the following:\nSecretary to the PSMIP Board of Trustees Employee Relations and Total Compensation Sector Treasury Board of Canada Secretariat 90 Elgin St 3 rd Floor Ottawa ON K1A 0R5",
|
| 5486 |
"history": "",
|
| 5487 |
"last_amended": "",
|
| 5488 |
-
"current_to": "",
|
| 5489 |
-
"citation": "PSMIP Main Plan Booklet, “Can I appeal the insurer’s decision?”",
|
| 5490 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5491 |
},
|
| 5492 |
{
|
|
@@ -5503,8 +5503,8 @@
|
|
| 5503 |
"text": "Privacy and protection of personal information\nWho can access personal information in my file? Personal information used to adjudicate your claim for LTD benefits is held by the insurer. Authorized employees or other persons working for or on behalf of the insurer are allowed access to this information while performing their duties, as outlined above. You have the right to have access to the information on file and correct it if needed. You must make any such request in writing to the insurer.",
|
| 5504 |
"history": "",
|
| 5505 |
"last_amended": "",
|
| 5506 |
-
"current_to": "",
|
| 5507 |
-
"citation": "PSMIP Main Plan Booklet, “Privacy and protection of personal information”",
|
| 5508 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5509 |
},
|
| 5510 |
{
|
|
@@ -5521,8 +5521,8 @@
|
|
| 5521 |
"text": "Contact information\nWho can I contact for more information? Your departmental compensation services or the Public Service Pay Centre can provide you with further information on: conditions of membership application procedures commencement, continuation, termination or cancellation of coverage claim procedures\nHow can I contact the insurer? You can contact the insurer at the following: Long-Term Disability benefits Telephone (toll-free): 1-800-830-1255 Email: disabilityclaims@ia.ca Fax (toll-free): 1-877-781-1583 Mail: iA Financial Group Group Life and Disability Claims Department (PSMIP) PO Box 4643, Station A Toronto, ON, M5W 5E3 Life Insurance benefits Telephone (toll-free): 1-800-830-1255 Email: PSMIP@ia.ca Fax (toll-free): 1-877-781-1583 Mail: iA Financial Group Group Life and Disability Claims Department (PSMIP) PO Box 4643, Station A Toronto ON M5W 5E3 You should quote the following when contacting the insurer regarding a claim: group policy number (G68-1400) name of the member nature of the claim employing department (or agency) of the member or the office held by the member The claim forms and details regarding procedures will be sent to you or your beneficiary.",
|
| 5522 |
"history": "",
|
| 5523 |
"last_amended": "",
|
| 5524 |
-
"current_to": "",
|
| 5525 |
-
"citation": "PSMIP Main Plan Booklet, “Contact information”",
|
| 5526 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5527 |
},
|
| 5528 |
{
|
|
@@ -5539,8 +5539,8 @@
|
|
| 5539 |
"text": "Who can I contact for more information?\nYour departmental compensation services or the Public Service Pay Centre can provide you with further information on:\n- conditions of membership\n- application procedures\n- commencement, continuation, termination or cancellation of coverage\n- claim procedures",
|
| 5540 |
"history": "",
|
| 5541 |
"last_amended": "",
|
| 5542 |
-
"current_to": "",
|
| 5543 |
-
"citation": "PSMIP Main Plan Booklet, “Who can I contact for more information?”",
|
| 5544 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5545 |
},
|
| 5546 |
{
|
|
@@ -5557,8 +5557,8 @@
|
|
| 5557 |
"text": "How can I contact the insurer?\nYou can contact the insurer at the following:\nLong-Term Disability benefits\n- Telephone (toll-free): 1-800-830-1255\n- Email: disabilityclaims@ia.ca\n- Fax (toll-free): 1-877-781-1583\n- Mail: iA Financial Group Group Life and Disability Claims Department (PSMIP) PO Box 4643, Station A Toronto, ON, M5W 5E3\nLife Insurance benefits\n- Telephone (toll-free): 1-800-830-1255\n- Email: PSMIP@ia.ca\n- Fax (toll-free): 1-877-781-1583\n- Mail: iA Financial Group Group Life and Disability Claims Department (PSMIP) PO Box 4643, Station A Toronto ON M5W 5E3\nYou should quote the following when contacting the insurer regarding a claim:\n- group policy number (G68-1400)\n- name of the member\n- nature of the claim\n- employing department (or agency) of the member or the office held by the member\nThe claim forms and details regarding procedures will be sent to you or your beneficiary.",
|
| 5558 |
"history": "",
|
| 5559 |
"last_amended": "",
|
| 5560 |
-
"current_to": "",
|
| 5561 |
-
"citation": "PSMIP Main Plan Booklet, “How can I contact the insurer?”",
|
| 5562 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5563 |
},
|
| 5564 |
{
|
|
@@ -5575,8 +5575,8 @@
|
|
| 5575 |
"text": "Appendix\nThe following table outlines the treatment of benefits payable under the Public Service Superannuation Act (PSSA) as offsets from Long-Term Disability (LTD) benefits.\nTable A1: treatment of benefits payable under the Public Service Superannuation Act (PSSA) as offsets from Long-Term Disability (LTD) benefits Circumstance Public Service Superannuation Act benefit options Offset from Long-Term Disability Plan 1. Termination with less than two years’ service Return of contributions No offset 2. PSSA disability retirement approved Immediate annuity Lump-sum payment Offset immediately in full amount Offset immediately by amount equal to immediate annuity until full amount of lump sum has been offset 3. PSSA disability retirement applied for but not approved Deferred annuity at age 60 Annual allowance from age 50 onward Transfer value Return of contributions Offset at age 60 Offset when payable Monthly offset at age 60 by amount equal to deferred annuity but capped when total of transfer value or lump sum has been offset 4. Application for PSSA disability retirement not made Immediate annuity Deferred annuity at age 60 Annual allowance from age 50 onward Transfer value Return of contributions Offset immediately by full amount Offset immediately by amount of equivalent immediate annuity unless you prove that an application for a disability retirement had been declined; capped when total of transfer value or return of contributions has been offset Where such proof is provided, offsets as in circumstance 3",
|
| 5576 |
"history": "",
|
| 5577 |
"last_amended": "",
|
| 5578 |
-
"current_to": "",
|
| 5579 |
-
"citation": "PSMIP Main Plan Booklet, “Appendix”",
|
| 5580 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5581 |
}
|
| 5582 |
]
|
|
|
|
| 4981 |
"text": "What is the Public Service Management Insurance Plan?\nThe Public Service Management Insurance Plan (PSMIP) provides public service employees who are excluded from collective bargaining with the following types of insurance:\n- Group Life Insurance\n- Accidental Death and Dismemberment (AD&D) Insurance\n- Dependants’ Insurance\n- Long-Term Disability (LTD) Insurance\nSome of these types of insurance are available to all members. Other types are restricted to certain senior-level employees.\nThis booklet outlines the major benefit provisions of the PSMIP that apply to excluded public service employees. If you are a member of the Executive Group or are otherwise entitled to the government-paid insurance benefits provided to executives, refer to the Public Service Management Insurance Plan Executive Plan Booklet .\nIndustrial Alliance is the principal insurer and carries out the following:\n- evaluates statements of health\n- approves and denies claims for benefits\n- receives and invests premiums on behalf of the PSMIP\n- monitors the PSMIP’s financial and underwriting experience\n- reports annually to the Board of Trustees on the status of the plan’s finances\n- brings matters of concern to the attention of the trustees\n- responds to matters raised by the trustees or the secretary as the need arises\n- provides members with a summary of the annual report on the PSMIP’s administration and financial affairs\nThe Board of Trustees, which administers the PSMIP, comprises senior government officials appointed by the President of the Treasury Board. As the policy holder, the Board of Trustees has a continuing responsibility to:\n- review the provisions of the PSMIP and recommend changes as required\n- review the financial experience of the PSMIP periodically to ensure its solvency",
|
| 4982 |
"history": "",
|
| 4983 |
"last_amended": "",
|
| 4984 |
+
"current_to": "undated (TBS web edition)",
|
| 4985 |
+
"citation": "PSMIP Main Plan Booklet (undated (TBS web edition)), “What is the Public Service Management Insurance Plan?”",
|
| 4986 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 4987 |
},
|
| 4988 |
{
|
|
|
|
| 4999 |
"text": "- review the problems arising from the administration and adjudication of claims\nThis booklet provides general information on the major benefit provisions of the PSMIP. Your departmental compensation services or the Public Service Pay Centre can provide information on the following:\n- eligibility for membership\n- application procedures\n- beginning and cost of coverage\n- coverage during leaves of absence or other periods without pay\n- termination or cancellation of coverage\n- other provisions\nThe complete terms and conditions of the PSMIP are set out in a contract of insurance between the Board of Trustees and the insurer. In any case of conflict between this booklet and the insurance contract, the terms of the contract shall prevail.",
|
| 5000 |
"history": "",
|
| 5001 |
"last_amended": "",
|
| 5002 |
+
"current_to": "undated (TBS web edition)",
|
| 5003 |
+
"citation": "PSMIP Main Plan Booklet (undated (TBS web edition)), “What is the Public Service Management Insurance Plan?”",
|
| 5004 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5005 |
},
|
| 5006 |
{
|
|
|
|
| 5017 |
"text": "Long-Term Disability insurance What is Long-Term Disability insurance? The Long-Term Disability (LTD) component of the PSMIP is an important part of the income-protection arrangements for members. LTD provides a monthly income benefit for employees who are unable to work for a lengthy period of time because of a totally disabling illness or injury. The employer and the employee share the cost of the premium for this insurance. Am I eligible for Long-Term Disability benefits? If you are a member under the LTD insurance plan, you are eligible for benefits for up to 24 months if, as a result of a physical or mental impairment determined by a physician, you are unable to perform the essential functions of your regular job. At the end of this 24 month period, your benefits will be continued if you remain totally disabled and are unable to earn two thirds of the current salary of the position you held before you became disabled. Your LTD benefits will continue as long as you remain totally disabled. Benefits will not continue beyond your 65 th birthday. While you are receiving LTD benefits, you must be under the active care of a physician who is a registered specialist in the field of medicine related to your disabling condition. You must also be receiving medical treatment or participating in a program of rehabilitation approved by the insurer. You are not eligible for benefits if: your disability is the result of a mental or physical impairment that existed before you became insured: this exclusion is lifted if you complete a continuous period of 90 days of active employment while insured for LTD, or after you have been insured for LTD for two years, whichever comes first your disability results from or is related to: a normal pregnancy (without severe complications) commission of a felony self-inflicted injury a mental or physical impairment suffered while on active duty with any armed force your disability results from or is related to an act of declared or undeclared war; this exclusion does not apply to persons who become totally disabled in this way while outside Canada at the direction of the employer Note: If you become disabled, contact your departmental compensation services or the Public Service Pay Centre , even if you are unsure whether or not you qualify for LTD benefits. What happens if I retire before using all my sick leave credits? If you retire voluntarily before exhausting your accumulated sick leave credits, your unused sick leave credits will still be counted and used to determine the date that your LTD benefits will begin. If you are considering terminating your employment prior to exhausting your sick leave credits, contact your departmental compensation services or the Public Service Pay Centre to see if your termination will be considered as a voluntary termination for LTD purposes. How are my Long-Term Disability benefits calculated? If you become totally disabled, your gross annual benefit will be 70% of your insured annual salary at the end of the elimination period (13 weeks or the exhaustion of your sick leave, whichever is later). The definition of salary is the same as that used for the Supplementary Death Benefit under the PSSA Your insured annual salary for the purposes of LTD is equal to your annual salary at the end of the elimination period if it is a multiple of $250, or the next multiple of $250 above that amount. A member who works part time will have the insured annual salary based on assigned hours of work. Payments are made monthly. Other income, whether it be income received as a result of being in receipt of a PSSA benefit or a disability benefit under the Canada Pension Plan (CPP) or Quebec Pension Plan (QPP), will be deducted as an offset from your LTD benefits. Your net benefit, which is the amount payable to you after other income has been deducted as an offset, will be subject to an annual increase related to increases in the cost of living, up to a maximum of 3%. Any retroactive salary increase approved after the date your LTD benefits become payable affects your insured salary and benefit level only when the effective date of the increase precedes the date on which your LTD benefits began. For example, a retroactive salary increase approved in April that took effect from February 10 would affect your LTD benefits only if your benefits began on February 11 or later. Table 1: example of benefit calculation 1. Your annual salary at end of elimination period $47,925 2. Your insured salary (annual salary taken to next highest multiple of $250) $48,000 3. Your gross annual LTD benefit (70% of $48,000) $33,600 4. Less other income you are receiving PSSA benefit $14,000 CPP disability benefit $8,000 5. Your net annual LTD benefit $11,600 6. The amount of monthly LTD payments ($11,600 divided by 12) $967 If the cost of living rose by 2% in the year following the start of your benefits, your net monthly LTD benefit of $967 would be increased by 2% to $986.34 on January 1 following the effective date your benefits start. Your PSSA and CPP or QPP benefits would be adjusted to reflect increases in the cost of living. You would receive the full increase under those plans, and the increase would not be deducted from your LTD benefit. On January 1 of each subsequent year, your LTD benefit would be further increased to reflect increases in the cost of living, up to a maximum of 3% annually. Offsets: what types of income will be deducted from my Long-Term Disability benefits? The following examples illustrate the most common types of income that would be deducted from your LTD benefits: benefits received under the PSSA LTD benefits under the CPP or the QPP, excluding benefits payable to or on behalf of your dependants as a result of your disability benefits under the or similar benefits under a plan of the federal government or any other government LTD benefits paid or available under another group insurance plan, or under a policy issued to you as a result of your membership in a public service employee union or association disability insurance benefits under the legislation of any government, such as income replacement benefits under a no-fault automobile insurance plan loss-of-income benefits received under a third-party damage award The following are examples of income that would not be deducted from your Long-Term Disability benefits: increases related to the cost of living indexation under the PSSA, CPP or QPP return of superannuation contributions where no pension entitlement is available benefits received under a purely private and personal insurance policy, or under a policy issued as a result of membership in a professional association not restricted to the public service severance pay If you do not apply for benefits under the CPP or QPP and if, in the opinion of the insurer, the medical evidence indicates that you would be eligible for CPP or QPP benefits, the insurer has the right to reduce your basic monthly LTD benefit by the estimated amount of your CPP or QPP entitlement. If you subsequently applied for CPP or QPP benefits and were declared ineligible, the reduction would cease, and the amounts previously withheld would be paid to you. Note, however, that if the insurer believes you have grounds for a successful appeal, the reduction may be continued until the conclusion of the appeal process. The treatment of benefits payable under the PSSA as offsets under the LTD component of the PSMIP is illustrated on the chart in Table A1 in the Appendix . If you cease to be employed in the public service, consult your departmental compensation services or the Public Service Pay Centre before opting for a public service pension. They can advise you how your choice of a public service pension will affect your monthly LTD benefit. What will happen to my Long-Term Disability benefits if I earn money in a rehabilitation program? While receiving benefits, you may participate in a rehabilitation program that the insurer has approved in writing. Such a program could be for vocational training or be a period of work for the purpose of rehabilitation. Depending on the circumstances, you may be able to remain in such a program for up to 24 months and still receive some benefits. Normally, the amount of your rehabilitation earnings will not be deducted from your monthly benefits unless your total income while working, together with any benefits you are receiving under the LTD plan, exceeds the current salary of your former position. What if I earn money from other employment? If you earn money from any employment that the insurer does not consider rehabilitative, your benefits will be reduced by the total amount of those earnings. What if I recover but become totally disabled again? If you were in receipt of LTD benefits, recovered from your disability, and then become totally disabled again, the elimination period will be waived according to how long you were back at work: for no more than one month, if the two periods of disability are due to unrelated causes for no more than six months, if the two periods of disability are due to related causes for no more than 12 months, if the two periods of disability are due to the same cause What happens if the group policy terminates? If the group policy were to terminate for any reason after your disability began, the insurer will continue to pay benefits as long as you remain totally disabled during a continuous period. Are my Long-Term Disability benefits subject to income tax? If you qualify for LTD benefits under the PSMIP, the amount you receive will be subject to income tax. After the end of each year, the insurer will send you a form that indicates the total amount of LTD benefits paid to you. The insurer does not automatically deduct taxes at source, except in the case of provincial taxes payable by Quebec residents. If you wish, the insurer will deduct taxes at source based on information you provide. The monthly premiums you pay while you are employed are not tax deductible from earnings. Note the following: if you become eligible for LTD benefits, the total amount of the premiums you have paid from the time you became a member of the PSMIP may be deducted for tax purposes from the amount of your disability income from the PSMIP if the total amount of premiums you have paid exceeds the LTD benefits you receive during the first taxation year in which your LTD benefits begin, you can carry over the excess amount to the following year Consult the Canada Revenue Agency for details if you become totally disabled. Your departmental compensation services or the Public Service Pay Centre can help you determine the amount of premiums you have paid. How do I submit a claim for Long-Term Disability benefits? The insurer is committed to making a prompt and accurate payment of benefits to which you may become entitled. If you become totally disabled and you believe that your disability will last long enough for you to qualify for benefits, notify your immediate supervisor or manager as soon as possible, who will take the next steps with the Public Service Pay Centre or departmental compensation services. To be considered for LTD benefits, the four forms listed below must be completed by you, your employer and your doctor (attending physician). These forms: are required for you to make a LTD benefits claim must be completed as clearly and fully as possible must be submitted with supporting documents to the insurer to begin processing your disability claim The forms should be sent 60 days prior to the end of the elimination period (13 weeks or the exhaustion of your sick leave, whichever is later). If you fail to submit the forms by this time limit, you may not be entitled to some or all benefit payments. Once the insurer receives the four completed forms, your claim will be processed within approximately 10 business days. All four forms are available on the insurer’s website : Employee’s Statement ( F54‑1011A‑57 ) Initial Disability Insurance Medical Statement (attending physician/medical provider) Employer’s Statement ( F54‑1012A‑57 Immediate Supervisor or Manager) Employer’s Statement ( F54‑1013A‑57 Compensation/Human Resource advisor) The forms can be downloaded, completed by hand or electronically, saved as an email attachment, and submitted electronically with electronic signatures to disabilityclaims@ia.ca or faxed or mailed to the insurer according to the instructions on each form. It is your responsibility to provide the insurer with sufficient medical evidence to support your total disability through these forms. If the information is not sufficient to establish that you are totally disabled, the insurer may arrange for you to be assessed by an independent medical specialist. Ask your doctor to provide a full, well-documented report that clearly details the medical evidence supporting the diagnosis and prognosis. Your doctor may wish to supplement the required information on the form with narrative reports and copies of any tests or investigations conducted. It is your responsibility to ensure that your doctor completes the medical statement and that it reaches the insurer without delay. If more than one doctor is involved in the assessment or treatment of your disabling condition (for example, a medical specialist), ask them all to supply the insurer with detailed medical reports. The insurer’s website also provides a checklist to help you complete your claim package. If your attending physician has difficulty completing the Initial Disability Insurance Medical Statement, contact the insurer to discuss your situation. If your immediate supervisor or manager is not available, your more senior manager may instead complete and submit the Employer’s Statement form (F54-1012A-57 Immediate Supervisor or Manager), provided they indicate to the insurer that they are doing so because of the unavailability of your direct supervisor or manager. In these cases, the name of the unavailable direct supervisor or manager should be indicated on the Employer’s Statement (F54-1012A-57 Immediate Supervisor or Manager) form, on a separate sheet of paper, or in the submission email. If completion by a more senior manager is not an option, contact the insurer . Submission before the end of the elimination period (13 weeks or the exhaustion of your sick leave, whichever is later) gives the insurer an opportunity to inform you of the decision on your claim prior to the first day your LTD benefits become payable. If the claim is approved, payment can be processed on that day. Any omissions or unclear statements in completed forms could result in a delay in settling your claim. Once the claim is received, the insurer has the right to: request additional medical information from your doctor arrange for your examination by independent medical specialists or other service provider(s) When will my Long-Term Disability benefits start? Your LTD benefits will be paid once you have used all your sick leave, provided that the elimination period of 13 weeks has been met. In most cases, the elimination period will consist of a complete absence from work for a period of 13 weeks. In certain circumstances, however, periods of absence due to the same illness or condition that occurred within the year immediately prior to the date of total disability can be used to calculate the elimination period. The first period of absence must have been for a continuous period of one month. These situations must be referred to the insurer for a decision on an individual basis.",
|
| 5018 |
"history": "",
|
| 5019 |
"last_amended": "",
|
| 5020 |
+
"current_to": "undated (TBS web edition)",
|
| 5021 |
+
"citation": "PSMIP Main Plan Booklet (undated (TBS web edition)), “What is the Public Service Management Insurance Plan?”",
|
| 5022 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5023 |
},
|
| 5024 |
{
|
|
|
|
| 5035 |
"text": "Long-Term Disability insurance\nWhat is Long-Term Disability insurance? The Long-Term Disability (LTD) component of the PSMIP is an important part of the income-protection arrangements for members. LTD provides a monthly income benefit for employees who are unable to work for a lengthy period of time because of a totally disabling illness or injury. The employer and the employee share the cost of the premium for this insurance.",
|
| 5036 |
"history": "",
|
| 5037 |
"last_amended": "",
|
| 5038 |
+
"current_to": "undated (TBS web edition)",
|
| 5039 |
+
"citation": "PSMIP Main Plan Booklet (undated (TBS web edition)), “Long-Term Disability insurance”",
|
| 5040 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5041 |
},
|
| 5042 |
{
|
|
|
|
| 5053 |
"text": "Am I eligible for Long-Term Disability benefits? If you are a member under the LTD insurance plan, you are eligible for benefits for up to 24 months if, as a result of a physical or mental impairment determined by a physician, you are unable to perform the essential functions of your regular job. At the end of this 24 month period, your benefits will be continued if you remain totally disabled and are unable to earn two thirds of the current salary of the position you held before you became disabled. Your LTD benefits will continue as long as you remain totally disabled. Benefits will not continue beyond your 65 th birthday. While you are receiving LTD benefits, you must be under the active care of a physician who is a registered specialist in the field of medicine related to your disabling condition. You must also be receiving medical treatment or participating in a program of rehabilitation approved by the insurer. You are not eligible for benefits if: your disability is the result of a mental or physical impairment that existed before you became insured: this exclusion is lifted if you complete a continuous period of 90 days of active employment while insured for LTD, or after you have been insured for LTD for two years, whichever comes first your disability results from or is related to: a normal pregnancy (without severe complications) commission of a felony self-inflicted injury a mental or physical impairment suffered while on active duty with any armed force your disability results from or is related to an act of declared or undeclared war; this exclusion does not apply to persons who become totally disabled in this way while outside Canada at the direction of the employer Note: If you become disabled, contact your departmental compensation services or the Public Service Pay Centre , even if you are unsure whether or not you qualify for LTD benefits.",
|
| 5054 |
"history": "",
|
| 5055 |
"last_amended": "",
|
| 5056 |
+
"current_to": "undated (TBS web edition)",
|
| 5057 |
+
"citation": "PSMIP Main Plan Booklet (undated (TBS web edition)), “Long-Term Disability insurance”",
|
| 5058 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5059 |
},
|
| 5060 |
{
|
|
|
|
| 5071 |
"text": "What happens if I retire before using all my sick leave credits? If you retire voluntarily before exhausting your accumulated sick leave credits, your unused sick leave credits will still be counted and used to determine the date that your LTD benefits will begin. If you are considering terminating your employment prior to exhausting your sick leave credits, contact your departmental compensation services or the Public Service Pay Centre to see if your termination will be considered as a voluntary termination for LTD purposes.",
|
| 5072 |
"history": "",
|
| 5073 |
"last_amended": "",
|
| 5074 |
+
"current_to": "undated (TBS web edition)",
|
| 5075 |
+
"citation": "PSMIP Main Plan Booklet (undated (TBS web edition)), “Long-Term Disability insurance”",
|
| 5076 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5077 |
},
|
| 5078 |
{
|
|
|
|
| 5089 |
"text": "How are my Long-Term Disability benefits calculated? If you become totally disabled, your gross annual benefit will be 70% of your insured annual salary at the end of the elimination period (13 weeks or the exhaustion of your sick leave, whichever is later). The definition of salary is the same as that used for the Supplementary Death Benefit under the PSSA Your insured annual salary for the purposes of LTD is equal to your annual salary at the end of the elimination period if it is a multiple of $250, or the next multiple of $250 above that amount. A member who works part time will have the insured annual salary based on assigned hours of work. Payments are made monthly. Other income, whether it be income received as a result of being in receipt of a PSSA benefit or a disability benefit under the Canada Pension Plan (CPP) or Quebec Pension Plan (QPP), will be deducted as an offset from your LTD benefits. Your net benefit, which is the amount payable to you after other income has been deducted as an offset, will be subject to an annual increase related to increases in the cost of living, up to a maximum of 3%. Any retroactive salary increase approved after the date your LTD benefits become payable affects your insured salary and benefit level only when the effective date of the increase precedes the date on which your LTD benefits began. For example, a retroactive salary increase approved in April that took effect from February 10 would affect your LTD benefits only if your benefits began on February 11 or later. Table 1: example of benefit calculation 1. Your annual salary at end of elimination period $47,925 2. Your insured salary (annual salary taken to next highest multiple of $250) $48,000 3. Your gross annual LTD benefit (70% of $48,000) $33,600 4. Less other income you are receiving PSSA benefit $14,000 CPP disability benefit $8,000 5. Your net annual LTD benefit $11,600 6. The amount of monthly LTD payments ($11,600 divided by 12) $967 If the cost of living rose by 2% in the year following the start of your benefits, your net monthly LTD benefit of $967 would be increased by 2% to $986.34 on January 1 following the effective date your benefits start. Your PSSA and CPP or QPP benefits would be adjusted to reflect increases in the cost of living. You would receive the full increase under those plans, and the increase would not be deducted from your LTD benefit. On January 1 of each subsequent year, your LTD benefit would be further increased to reflect increases in the cost of living, up to a maximum of 3% annually.",
|
| 5090 |
"history": "",
|
| 5091 |
"last_amended": "",
|
| 5092 |
+
"current_to": "undated (TBS web edition)",
|
| 5093 |
+
"citation": "PSMIP Main Plan Booklet (undated (TBS web edition)), “Long-Term Disability insurance”",
|
| 5094 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5095 |
},
|
| 5096 |
{
|
|
|
|
| 5107 |
"text": "Offsets: what types of income will be deducted from my Long-Term Disability benefits? The following examples illustrate the most common types of income that would be deducted from your LTD benefits: benefits received under the PSSA LTD benefits under the CPP or the QPP, excluding benefits payable to or on behalf of your dependants as a result of your disability benefits under the or similar benefits under a plan of the federal government or any other government LTD benefits paid or available under another group insurance plan, or under a policy issued to you as a result of your membership in a public service employee union or association disability insurance benefits under the legislation of any government, such as income replacement benefits under a no-fault automobile insurance plan loss-of-income benefits received under a third-party damage award The following are examples of income that would not be deducted from your Long-Term Disability benefits: increases related to the cost of living indexation under the PSSA, CPP or QPP return of superannuation contributions where no pension entitlement is available benefits received under a purely private and personal insurance policy, or under a policy issued as a result of membership in a professional association not restricted to the public service severance pay If you do not apply for benefits under the CPP or QPP and if, in the opinion of the insurer, the medical evidence indicates that you would be eligible for CPP or QPP benefits, the insurer has the right to reduce your basic monthly LTD benefit by the estimated amount of your CPP or QPP entitlement. If you subsequently applied for CPP or QPP benefits and were declared ineligible, the reduction would cease, and the amounts previously withheld would be paid to you. Note, however, that if the insurer believes you have grounds for a successful appeal, the reduction may be continued until the conclusion of the appeal process. The treatment of benefits payable under the PSSA as offsets under the LTD component of the PSMIP is illustrated on the chart in Table A1 in the Appendix . If you cease to be employed in the public service, consult your departmental compensation services or the Public Service Pay Centre before opting for a public service pension. They can advise you how your choice of a public service pension will affect your monthly LTD benefit.",
|
| 5108 |
"history": "",
|
| 5109 |
"last_amended": "",
|
| 5110 |
+
"current_to": "undated (TBS web edition)",
|
| 5111 |
+
"citation": "PSMIP Main Plan Booklet (undated (TBS web edition)), “Long-Term Disability insurance”",
|
| 5112 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5113 |
},
|
| 5114 |
{
|
|
|
|
| 5125 |
"text": "What will happen to my Long-Term Disability benefits if I earn money in a rehabilitation program? While receiving benefits, you may participate in a rehabilitation program that the insurer has approved in writing. Such a program could be for vocational training or be a period of work for the purpose of rehabilitation. Depending on the circumstances, you may be able to remain in such a program for up to 24 months and still receive some benefits. Normally, the amount of your rehabilitation earnings will not be deducted from your monthly benefits unless your total income while working, together with any benefits you are receiving under the LTD plan, exceeds the current salary of your former position.\nWhat if I earn money from other employment? If you earn money from any employment that the insurer does not consider rehabilitative, your benefits will be reduced by the total amount of those earnings.\nWhat if I recover but become totally disabled again? If you were in receipt of LTD benefits, recovered from your disability, and then become totally disabled again, the elimination period will be waived according to how long you were back at work: for no more than one month, if the two periods of disability are due to unrelated causes for no more than six months, if the two periods of disability are due to related causes for no more than 12 months, if the two periods of disability are due to the same cause\nWhat happens if the group policy terminates? If the group policy were to terminate for any reason after your disability began, the insurer will continue to pay benefits as long as you remain totally disabled during a continuous period.",
|
| 5126 |
"history": "",
|
| 5127 |
"last_amended": "",
|
| 5128 |
+
"current_to": "undated (TBS web edition)",
|
| 5129 |
+
"citation": "PSMIP Main Plan Booklet (undated (TBS web edition)), “Long-Term Disability insurance”",
|
| 5130 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5131 |
},
|
| 5132 |
{
|
|
|
|
| 5143 |
"text": "Are my Long-Term Disability benefits subject to income tax? If you qualify for LTD benefits under the PSMIP, the amount you receive will be subject to income tax. After the end of each year, the insurer will send you a form that indicates the total amount of LTD benefits paid to you. The insurer does not automatically deduct taxes at source, except in the case of provincial taxes payable by Quebec residents. If you wish, the insurer will deduct taxes at source based on information you provide. The monthly premiums you pay while you are employed are not tax deductible from earnings. Note the following: if you become eligible for LTD benefits, the total amount of the premiums you have paid from the time you became a member of the PSMIP may be deducted for tax purposes from the amount of your disability income from the PSMIP if the total amount of premiums you have paid exceeds the LTD benefits you receive during the first taxation year in which your LTD benefits begin, you can carry over the excess amount to the following year Consult the Canada Revenue Agency for details if you become totally disabled. Your departmental compensation services or the Public Service Pay Centre can help you determine the amount of premiums you have paid.",
|
| 5144 |
"history": "",
|
| 5145 |
"last_amended": "",
|
| 5146 |
+
"current_to": "undated (TBS web edition)",
|
| 5147 |
+
"citation": "PSMIP Main Plan Booklet (undated (TBS web edition)), “Long-Term Disability insurance”",
|
| 5148 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5149 |
},
|
| 5150 |
{
|
|
|
|
| 5161 |
"text": "How do I submit a claim for Long-Term Disability benefits? The insurer is committed to making a prompt and accurate payment of benefits to which you may become entitled. If you become totally disabled and you believe that your disability will last long enough for you to qualify for benefits, notify your immediate supervisor or manager as soon as possible, who will take the next steps with the Public Service Pay Centre or departmental compensation services. To be considered for LTD benefits, the four forms listed below must be completed by you, your employer and your doctor (attending physician). These forms: are required for you to make a LTD benefits claim must be completed as clearly and fully as possible must be submitted with supporting documents to the insurer to begin processing your disability claim The forms should be sent 60 days prior to the end of the elimination period (13 weeks or the exhaustion of your sick leave, whichever is later). If you fail to submit the forms by this time limit, you may not be entitled to some or all benefit payments. Once the insurer receives the four completed forms, your claim will be processed within approximately 10 business days. All four forms are available on the insurer’s website : Employee’s Statement ( F54‑1011A‑57 ) Initial Disability Insurance Medical Statement (attending physician/medical provider) Employer’s Statement ( F54‑1012A‑57 Immediate Supervisor or Manager) Employer’s Statement ( F54‑1013A‑57 Compensation/Human Resource advisor) The forms can be downloaded, completed by hand or electronically, saved as an email attachment, and submitted electronically with electronic signatures to disabilityclaims@ia.ca or faxed or mailed to the insurer according to the instructions on each form. It is your responsibility to provide the insurer with sufficient medical evidence to support your total disability through these forms. If the information is not sufficient to establish that you are totally disabled, the insurer may arrange for you to be assessed by an independent medical specialist. Ask your doctor to provide a full, well-documented report that clearly details the medical evidence supporting the diagnosis and prognosis. Your doctor may wish to supplement the required information on the form with narrative reports and copies of any tests or investigations conducted. It is your responsibility to ensure that your doctor completes the medical statement and that it reaches the insurer without delay. If more than one doctor is involved in the assessment or treatment of your disabling condition (for example, a medical specialist), ask them all to supply the insurer with detailed medical reports. The insurer’s website also provides a checklist to help you complete your claim package. If your attending physician has difficulty completing the Initial Disability Insurance Medical Statement, contact the insurer to discuss your situation. If your immediate supervisor or manager is not available, your more senior manager may instead complete and submit the Employer’s Statement form (F54-1012A-57 Immediate Supervisor or Manager), provided they indicate to the insurer that they are doing so because of the unavailability of your direct supervisor or manager. In these cases, the name of the unavailable direct supervisor or manager should be indicated on the Employer’s Statement (F54-1012A-57 Immediate Supervisor or Manager) form, on a separate sheet of paper, or in the submission email. If completion by a more senior manager is not an option, contact the insurer . Submission before the end of the elimination period (13 weeks or the exhaustion of your sick leave, whichever is later) gives the insurer an opportunity to inform you of the decision on your claim prior to the first day your LTD benefits become payable. If the claim is approved, payment can be processed on that day. Any omissions or unclear statements in completed forms could result in a delay in settling your claim. Once the claim is received, the insurer has the right to: request additional medical information from your doctor arrange for your examination by independent medical specialists or other service provider(s)",
|
| 5162 |
"history": "",
|
| 5163 |
"last_amended": "",
|
| 5164 |
+
"current_to": "undated (TBS web edition)",
|
| 5165 |
+
"citation": "PSMIP Main Plan Booklet (undated (TBS web edition)), “Long-Term Disability insurance”",
|
| 5166 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5167 |
},
|
| 5168 |
{
|
|
|
|
| 5179 |
"text": "When will my Long-Term Disability benefits start? Your LTD benefits will be paid once you have used all your sick leave, provided that the elimination period of 13 weeks has been met. In most cases, the elimination period will consist of a complete absence from work for a period of 13 weeks. In certain circumstances, however, periods of absence due to the same illness or condition that occurred within the year immediately prior to the date of total disability can be used to calculate the elimination period. The first period of absence must have been for a continuous period of one month. These situations must be referred to the insurer for a decision on an individual basis.",
|
| 5180 |
"history": "",
|
| 5181 |
"last_amended": "",
|
| 5182 |
+
"current_to": "undated (TBS web edition)",
|
| 5183 |
+
"citation": "PSMIP Main Plan Booklet (undated (TBS web edition)), “Long-Term Disability insurance”",
|
| 5184 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5185 |
},
|
| 5186 |
{
|
|
|
|
| 5197 |
"text": "What other insurance is available to me?\nThe PSMIP provides public service employees who are excluded from the collective bargaining process, or their families, with benefits in the event of accident or death. The PSMIP offers four types of optional insurance, which you may obtain at your own expense.\nTo be covered for optional insurance, you must complete an application form. You can apply for coverage under the following:\n- Basic Life Insurance: a lump-sum benefit roughly equal to your annual salary, payable to your beneficiary in the event of your death from any cause\n- Supplementary Life Insurance: an additional layer of insurance identical to that provided by Basic Life Insurance\n- Accidental Death and Dismemberment (AD&D) Insurance: a lump-sum benefit payable to your beneficiary if you are killed in an accident (on or off the job), or to you directly if you are maimed in an accident\n- Dependants’ Insurance: a lump-sum benefit to you in the event of the death or dismemberment of one or more of your dependants\nApplications for Basic Life and Dependants’ Insurance made more than two months after you or your dependants become eligible to join the PSMIP must be accompanied by evidence of insurability that is satisfactory to the insurer. For example, a member who enters into a relationship that satisfies the definition of spouse, and who does not apply for Dependants’ Insurance within two months of having satisfied the requirements of the definition, must provide evidence of the spouse’s insurability in a form that is satisfactory to the insurer when submitting an application.\nThe applications for Supplementary Life Insurance may be made at any time and must be accompanied by evidence of insurability that is satisfactory to the insurer.",
|
| 5198 |
"history": "",
|
| 5199 |
"last_amended": "",
|
| 5200 |
+
"current_to": "undated (TBS web edition)",
|
| 5201 |
+
"citation": "PSMIP Main Plan Booklet (undated (TBS web edition)), “What other insurance is available to me?”",
|
| 5202 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5203 |
},
|
| 5204 |
{
|
|
|
|
| 5215 |
"text": "Life insurance benefits payable under the PSMIP are in addition to any Supplementary Death Benefit payable under the PSSA.",
|
| 5216 |
"history": "",
|
| 5217 |
"last_amended": "",
|
| 5218 |
+
"current_to": "undated (TBS web edition)",
|
| 5219 |
+
"citation": "PSMIP Main Plan Booklet (undated (TBS web edition)), “What other insurance is available to me?”",
|
| 5220 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5221 |
},
|
| 5222 |
{
|
|
|
|
| 5233 |
"text": "Basic Life Insurance How is Basic Life Insurance calculated? Your Basic Life Insurance is based on your salary adjusted to the nearest $1,000 (for example, all salaries in the range of $47,500.01 to $48,500.00 would be rounded to $48,000). This $48,000 figure is the adjusted salary. The definition of salary is the same as that used for the Supplementary Death Benefit under the PSSA. If you are a part-time employee, your annual salary for the purposes of insurance is determined by reducing the full-time salary for your occupational group and level, in proportion to the relationship of your assigned hours of work to normal full-time hours in that group. That amount is then rounded to the nearest $1,000. The amount of Basic Life Insurance is one year’s adjusted salary (as described above) up to age 65. On the first of the month following your 66 th birthday, the basic amount becomes 90% of one year’s adjusted salary. It becomes 80% of one year’s adjusted salary one year later, and so on. Coverage will never be less than 10% of one year’s adjusted salary while you remain a member of the PSMIP. The amount of this insurance will be revised immediately to reflect any changes in salary due to annual increments, economic increases or promotions. In the case of a retroactive salary change, coverage will change on the first of the month following the month in which the change was authorized. The premium rates for Basic Life Insurance are related to your sex and age. You are responsible for paying 100% of the premiums. If you die from any cause while insured under Basic Life Insurance or Supplementary Life Insurance, the amount of life insurance in force at that time will be paid to your beneficiary. You may name your own beneficiary. Your beneficiary may be: one person or more than one person a minor a charitable organization your estate Your beneficiary would receive any life (Basic and Supplementary) insurance and accidental death benefits payable under the policy. To change beneficiaries at any time (subject to any applicable provincial or territorial law), complete the PWGSC-TPSGC 2028-1 - Public Service Management Insurance Plan form. If you do not name a beneficiary, or if your beneficiary predeceases you, benefits will be paid to your estate.",
|
| 5234 |
"history": "",
|
| 5235 |
"last_amended": "",
|
| 5236 |
+
"current_to": "undated (TBS web edition)",
|
| 5237 |
+
"citation": "PSMIP Main Plan Booklet (undated (TBS web edition)), “What other insurance is available to me?”",
|
| 5238 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5239 |
},
|
| 5240 |
{
|
|
|
|
| 5251 |
"text": "Supplementary Life Insurance Is there any additional insurance available? If you decide to take Basic Life Insurance under the PSMIP, you may also elect to take Supplementary Life Insurance, subject to the insurer’s approval. The amount of Supplementary Life Insurance is equal to the amount of Basic Life Insurance, and together these would bring your total protection to twice your adjusted salary. Evidence of your insurability that is satisfactory to the insurer is needed for Supplementary Life Insurance, no matter when you apply. As for Basic Life Insurance, the premium rates for Supplementary Life Insurance are related to your sex and age.",
|
| 5252 |
"history": "",
|
| 5253 |
"last_amended": "",
|
| 5254 |
+
"current_to": "undated (TBS web edition)",
|
| 5255 |
+
"citation": "PSMIP Main Plan Booklet (undated (TBS web edition)), “What other insurance is available to me?”",
|
| 5256 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5257 |
},
|
| 5258 |
{
|
|
|
|
| 5269 |
"text": "Accidental Death and Dismemberment (AD&D) Insurance How does AD&D Insurance work? The maximum principal sum available through AD&D Insurance is $250,000. It is available in units of $25,000. You may select any number of units, up to 10, unless you are a part-time employee, in which case the maximum number of units available to you depends on your assigned hours of work. Your departmental compensation services or the Public Service Pay Centre can provide full details. If you sustain any of the losses listed in Table 2 solely through external accidental means, the following benefits will be paid in addition to any life insurance or LTD benefits payable under the LTD Plan: Table 2: schedule of amounts of insurance Type of AD&D Benefit Life Principal sum Both hands or both feet Principal sum Sight of both eyes Principal sum One hand and one foot Principal sum One hand or one foot and sight of one eye Principal sum Speech and hearing Principal sum Quadriplegia (total and irreversible paralysis of all four limbs) Principal sum Paraplegia (total and irreversible paralysis of both lower limbs) Principal sum Hemiplegia (total and irreversible paralysis of one arm and one leg on the same side of the body) Principal sum One leg or one arm Three quarters of the principal sum One hand or one foot Half of the principal sum Speech or hearing Half of the principal sum Sight of one eye Half of the principal sum Thumb and index finger (of the same hand) One quarter of the principal sum As an example, if you carried five units of this insurance and were killed in a car accident, your beneficiary would receive $125,000 (the principal sum). If, instead, you lost one foot, you would receive $62,500 (half the principal sum). Losses must be suffered within 90 days from the date of the accident. The total amount payable for all losses sustained in any one accident is limited to the principal sum. These benefits are not payable in the event of loss arising from suicide or self-inflicted injury. Benefits are not payable if the loss results from war or any act of war, unless the incident occurs while you are outside Canada at the direction of the employer, such as on a posting, on assignment or in travel status. Benefits are also not payable if the loss was caused by disease, bacterial infection, taking poison, or participating in any riot or civil strife.",
|
| 5270 |
"history": "",
|
| 5271 |
"last_amended": "",
|
| 5272 |
+
"current_to": "undated (TBS web edition)",
|
| 5273 |
+
"citation": "PSMIP Main Plan Booklet (undated (TBS web edition)), “What other insurance is available to me?”",
|
| 5274 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5275 |
},
|
| 5276 |
{
|
|
|
|
| 5287 |
"text": "Dependants’ Insurance What kind of coverage is available for my dependants? This coverage consists of life insurance and AD&D Insurance for your dependants, who are defined as: your spouse that is, a person to whom you are legally married or a person who resides with you and has resided with you for a period of at least one year and whom you have publicly represented as your spouse all your unmarried children over the age of 14 days but not yet 21 years old (25 in the case of full-time students enrolled in a school or university) who are not employed on a regular, full-time basis and who are dependent on you for support The amounts of insurance are as follows: life insurance of $5,000 on the life of your spouse and $2,500 on the life of each child: on the first of the month following your 65 th birthday, all amounts are reduced to $1,250, if one of your dependants dies from any cause while insured, the amount of life insurance in force on the life of the dependant will be paid to you AD&D Insurance in a principal sum of $5,000 on the life of your spouse and $2,500 on the life of each child: the principal sums are reduced to $1,250 after you reach age 65; the proportions of the principal sum payable for a loss suffered by one of your insured dependants, and all other conditions, are identical to those of the AD&D Insurance available to you as described in Table 2",
|
| 5288 |
"history": "",
|
| 5289 |
"last_amended": "",
|
| 5290 |
+
"current_to": "undated (TBS web edition)",
|
| 5291 |
+
"citation": "PSMIP Main Plan Booklet (undated (TBS web edition)), “What other insurance is available to me?”",
|
| 5292 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5293 |
},
|
| 5294 |
{
|
|
|
|
| 5305 |
"text": "Living Benefit What is the Living Benefit? The Living Benefit, which came into effect in February 1994 , provides members who are terminally ill with a portion of the life insurance benefit that would otherwise be payable to their beneficiary on their death. What is a terminal condition? A terminal condition means an injury or illness that is expected to result in death within 24 months and from which there is no reasonable prospect of recovery as determined by the insurer based on medical evidence provided. How is the Living Benefit calculated? The amount payable is 50% of the total amount of your life insurance or $50,000, whichever is less. How do I apply for the Living Benefit? To request the Living Benefit, contact the insurer. You will be required to provide all medical information necessary to permit the insurer to determine whether you are suffering from a terminal condition as defined in the PSMIP. You and your beneficiary will be required to sign a Living Benefit Agreement. Are there any restrictions? A Living Benefit is not payable if all or a portion of your life insurance is to be paid to your former spouse as part of a divorce agreement. If I receive a Living Benefit, what effect will it have on the amount payable on my death? The amount payable as a Living Benefit will be deducted from the amount otherwise payable under the PSMIP to your beneficiary. No interest will be charged.",
|
| 5306 |
"history": "",
|
| 5307 |
"last_amended": "",
|
| 5308 |
+
"current_to": "undated (TBS web edition)",
|
| 5309 |
+
"citation": "PSMIP Main Plan Booklet (undated (TBS web edition)), “What other insurance is available to me?”",
|
| 5310 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5311 |
},
|
| 5312 |
{
|
|
|
|
| 5323 |
"text": "Basic Life Insurance\nHow is Basic Life Insurance calculated? Your Basic Life Insurance is based on your salary adjusted to the nearest $1,000 (for example, all salaries in the range of $47,500.01 to $48,500.00 would be rounded to $48,000). This $48,000 figure is the adjusted salary. The definition of salary is the same as that used for the Supplementary Death Benefit under the PSSA. If you are a part-time employee, your annual salary for the purposes of insurance is determined by reducing the full-time salary for your occupational group and level, in proportion to the relationship of your assigned hours of work to normal full-time hours in that group. That amount is then rounded to the nearest $1,000. The amount of Basic Life Insurance is one year’s adjusted salary (as described above) up to age 65. On the first of the month following your 66 th birthday, the basic amount becomes 90% of one year’s adjusted salary. It becomes 80% of one year’s adjusted salary one year later, and so on. Coverage will never be less than 10% of one year’s adjusted salary while you remain a member of the PSMIP. The amount of this insurance will be revised immediately to reflect any changes in salary due to annual increments, economic increases or promotions. In the case of a retroactive salary change, coverage will change on the first of the month following the month in which the change was authorized. The premium rates for Basic Life Insurance are related to your sex and age. You are responsible for paying 100% of the premiums. If you die from any cause while insured under Basic Life Insurance or Supplementary Life Insurance, the amount of life insurance in force at that time will be paid to your beneficiary. You may name your own beneficiary. Your beneficiary may be: one person or more than one person a minor a charitable organization your estate Your beneficiary would receive any life (Basic and Supplementary) insurance and accidental death benefits payable under the policy. To change beneficiaries at any time (subject to any applicable provincial or territorial law), complete the PWGSC-TPSGC 2028-1 - Public Service Management Insurance Plan form. If you do not name a beneficiary, or if your beneficiary predeceases you, benefits will be paid to your estate.",
|
| 5324 |
"history": "",
|
| 5325 |
"last_amended": "",
|
| 5326 |
+
"current_to": "undated (TBS web edition)",
|
| 5327 |
+
"citation": "PSMIP Main Plan Booklet (undated (TBS web edition)), “Basic Life Insurance”",
|
| 5328 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5329 |
},
|
| 5330 |
{
|
|
|
|
| 5341 |
"text": "Supplementary Life Insurance\nIs there any additional insurance available? If you decide to take Basic Life Insurance under the PSMIP, you may also elect to take Supplementary Life Insurance, subject to the insurer’s approval. The amount of Supplementary Life Insurance is equal to the amount of Basic Life Insurance, and together these would bring your total protection to twice your adjusted salary. Evidence of your insurability that is satisfactory to the insurer is needed for Supplementary Life Insurance, no matter when you apply. As for Basic Life Insurance, the premium rates for Supplementary Life Insurance are related to your sex and age.",
|
| 5342 |
"history": "",
|
| 5343 |
"last_amended": "",
|
| 5344 |
+
"current_to": "undated (TBS web edition)",
|
| 5345 |
+
"citation": "PSMIP Main Plan Booklet (undated (TBS web edition)), “Supplementary Life Insurance”",
|
| 5346 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5347 |
},
|
| 5348 |
{
|
|
|
|
| 5359 |
"text": "Accidental Death and Dismemberment (AD&D) Insurance\nHow does AD&D Insurance work? The maximum principal sum available through AD&D Insurance is $250,000. It is available in units of $25,000. You may select any number of units, up to 10, unless you are a part-time employee, in which case the maximum number of units available to you depends on your assigned hours of work. Your departmental compensation services or the Public Service Pay Centre can provide full details. If you sustain any of the losses listed in Table 2 solely through external accidental means, the following benefits will be paid in addition to any life insurance or LTD benefits payable under the LTD Plan: Table 2: schedule of amounts of insurance Type of AD&D Benefit Life Principal sum Both hands or both feet Principal sum Sight of both eyes Principal sum One hand and one foot Principal sum One hand or one foot and sight of one eye Principal sum Speech and hearing Principal sum Quadriplegia (total and irreversible paralysis of all four limbs) Principal sum Paraplegia (total and irreversible paralysis of both lower limbs) Principal sum Hemiplegia (total and irreversible paralysis of one arm and one leg on the same side of the body) Principal sum One leg or one arm Three quarters of the principal sum One hand or one foot Half of the principal sum Speech or hearing Half of the principal sum Sight of one eye Half of the principal sum Thumb and index finger (of the same hand) One quarter of the principal sum As an example, if you carried five units of this insurance and were killed in a car accident, your beneficiary would receive $125,000 (the principal sum). If, instead, you lost one foot, you would receive $62,500 (half the principal sum). Losses must be suffered within 90 days from the date of the accident. The total amount payable for all losses sustained in any one accident is limited to the principal sum. These benefits are not payable in the event of loss arising from suicide or self-inflicted injury. Benefits are not payable if the loss results from war or any act of war, unless the incident occurs while you are outside Canada at the direction of the employer, such as on a posting, on assignment or in travel status. Benefits are also not payable if the loss was caused by disease, bacterial infection, taking poison, or participating in any riot or civil strife.",
|
| 5360 |
"history": "",
|
| 5361 |
"last_amended": "",
|
| 5362 |
+
"current_to": "undated (TBS web edition)",
|
| 5363 |
+
"citation": "PSMIP Main Plan Booklet (undated (TBS web edition)), “Accidental Death and Dismemberment (AD&D) Insurance”",
|
| 5364 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5365 |
},
|
| 5366 |
{
|
|
|
|
| 5377 |
"text": "Dependants’ Insurance\nWhat kind of coverage is available for my dependants? This coverage consists of life insurance and AD&D Insurance for your dependants, who are defined as: your spouse that is, a person to whom you are legally married or a person who resides with you and has resided with you for a period of at least one year and whom you have publicly represented as your spouse all your unmarried children over the age of 14 days but not yet 21 years old (25 in the case of full-time students enrolled in a school or university) who are not employed on a regular, full-time basis and who are dependent on you for support The amounts of insurance are as follows: life insurance of $5,000 on the life of your spouse and $2,500 on the life of each child: on the first of the month following your 65 th birthday, all amounts are reduced to $1,250, if one of your dependants dies from any cause while insured, the amount of life insurance in force on the life of the dependant will be paid to you AD&D Insurance in a principal sum of $5,000 on the life of your spouse and $2,500 on the life of each child: the principal sums are reduced to $1,250 after you reach age 65; the proportions of the principal sum payable for a loss suffered by one of your insured dependants, and all other conditions, are identical to those of the AD&D Insurance available to you as described in Table 2",
|
| 5378 |
"history": "",
|
| 5379 |
"last_amended": "",
|
| 5380 |
+
"current_to": "undated (TBS web edition)",
|
| 5381 |
+
"citation": "PSMIP Main Plan Booklet (undated (TBS web edition)), “Dependants’ Insurance”",
|
| 5382 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5383 |
},
|
| 5384 |
{
|
|
|
|
| 5395 |
"text": "Living Benefit\nWhat is the Living Benefit? The Living Benefit, which came into effect in February 1994 , provides members who are terminally ill with a portion of the life insurance benefit that would otherwise be payable to their beneficiary on their death.\nWhat is a terminal condition? A terminal condition means an injury or illness that is expected to result in death within 24 months and from which there is no reasonable prospect of recovery as determined by the insurer based on medical evidence provided.\nHow is the Living Benefit calculated? The amount payable is 50% of the total amount of your life insurance or $50,000, whichever is less.\nHow do I apply for the Living Benefit? To request the Living Benefit, contact the insurer. You will be required to provide all medical information necessary to permit the insurer to determine whether you are suffering from a terminal condition as defined in the PSMIP. You and your beneficiary will be required to sign a Living Benefit Agreement.\nAre there any restrictions? A Living Benefit is not payable if all or a portion of your life insurance is to be paid to your former spouse as part of a divorce agreement. If I receive a Living Benefit, what effect will it have on the amount payable on my death? The amount payable as a Living Benefit will be deducted from the amount otherwise payable under the PSMIP to your beneficiary. No interest will be charged.",
|
| 5396 |
"history": "",
|
| 5397 |
"last_amended": "",
|
| 5398 |
+
"current_to": "undated (TBS web edition)",
|
| 5399 |
+
"citation": "PSMIP Main Plan Booklet (undated (TBS web edition)), “Living Benefit”",
|
| 5400 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5401 |
},
|
| 5402 |
{
|
|
|
|
| 5413 |
"text": "Termination of employment\nWhat happens to my insurance coverage when I cease to be employed in the public service? If you leave the public service, your life insurance will cease, subject to a 31-day extension period. During that extension period, you will be able to obtain an individual private life insurance policy, including some types of term insurance regularly issued by your insurer without medical examination and regardless of your state of health. Such a policy: may be for any amount equal to or less than the amount for which you were last insured under the group policy will be available at the insurer’s standard rates for your age, based on any special non-medical hazards (for example, hazards that an aircraft pilot could experience) to which you may be exposed If your own PSMIP Basic Life Insurance ceases, Dependants’ Insurance will also cease. However, your Dependants’ Life Insurance may also be converted to an individual private policy. AD&D and LTD Insurance cannot be converted to private policies. They terminate on the day you leave the public service. You must make your own arrangements directly with the insurer to convert your insurance to a private policy.",
|
| 5414 |
"history": "",
|
| 5415 |
"last_amended": "",
|
| 5416 |
+
"current_to": "undated (TBS web edition)",
|
| 5417 |
+
"citation": "PSMIP Main Plan Booklet (undated (TBS web edition)), “Termination of employment”",
|
| 5418 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5419 |
},
|
| 5420 |
{
|
|
|
|
| 5431 |
"text": "What happens to my insurance coverage when I cease to be employed in the public service?\nIf you leave the public service, your life insurance will cease, subject to a 31-day extension period. During that extension period, you will be able to obtain an individual private life insurance policy, including some types of term insurance regularly issued by your insurer without medical examination and regardless of your state of health. Such a policy:\n- may be for any amount equal to or less than the amount for which you were last insured under the group policy\n- will be available at the insurer’s standard rates for your age, based on any special non-medical hazards (for example, hazards that an aircraft pilot could experience) to which you may be exposed\nIf your own PSMIP Basic Life Insurance ceases, Dependants’ Insurance will also cease. However, your Dependants’ Life Insurance may also be converted to an individual private policy. AD&D and LTD Insurance cannot be converted to private policies. They terminate on the day you leave the public service.\nYou must make your own arrangements directly with the insurer to convert your insurance to a private policy.",
|
| 5432 |
"history": "",
|
| 5433 |
"last_amended": "",
|
| 5434 |
+
"current_to": "undated (TBS web edition)",
|
| 5435 |
+
"citation": "PSMIP Main Plan Booklet (undated (TBS web edition)), “What happens to my insurance coverage when I cease to be employed in the public service?”",
|
| 5436 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5437 |
},
|
| 5438 |
{
|
|
|
|
| 5449 |
"text": "General information\nWhat is the waiver of premium benefit? If you become totally disabled to the point where you qualify for LTD benefits, or where you would qualify if you belonged to the LTD portion of the PSMIP your optional life and LTD insurance will be continued in force without payment of further premiums from the date your salary ceases until your recovery, death or 65 th birthday, whichever comes first. This benefit is subject to proof of total disability. You must provide this proof when you first make a claim and from time to time as set forth in the policy.\nCan I appeal the insurer’s decision? If you disagree with the insurer’s decision on an insurance application or a claim for your LTD benefits, you can appeal to the insurer. If the insurer’s decision remains unchanged, the Board of Trustees can review your case. The Board can only make recommendations to the insurer and cannot overrule their decisions. If you want the Board of Trustees to review your case, write to the following: Secretary to the PSMIP Board of Trustees Employee Relations and Total Compensation Sector Treasury Board of Canada Secretariat 90 Elgin St 3 rd Floor Ottawa ON K1A 0R5\nPrivacy and protection of personal information Who can access personal information in my file? Personal information used to adjudicate your claim for LTD benefits is held by the insurer. Authorized employees or other persons working for or on behalf of the insurer are allowed access to this information while performing their duties, as outlined above. You have the right to have access to the information on file and correct it if needed. You must make any such request in writing to the insurer.",
|
| 5450 |
"history": "",
|
| 5451 |
"last_amended": "",
|
| 5452 |
+
"current_to": "undated (TBS web edition)",
|
| 5453 |
+
"citation": "PSMIP Main Plan Booklet (undated (TBS web edition)), “General information”",
|
| 5454 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5455 |
},
|
| 5456 |
{
|
|
|
|
| 5467 |
"text": "What is the waiver of premium benefit?\nIf you become totally disabled to the point where you qualify for LTD benefits, or where you would qualify if you belonged to the LTD portion of the PSMIP your optional life and LTD insurance will be continued in force without payment of further premiums from the date your salary ceases until your recovery, death or 65 th birthday, whichever comes first. This benefit is subject to proof of total disability. You must provide this proof when you first make a claim and from time to time as set forth in the policy.",
|
| 5468 |
"history": "",
|
| 5469 |
"last_amended": "",
|
| 5470 |
+
"current_to": "undated (TBS web edition)",
|
| 5471 |
+
"citation": "PSMIP Main Plan Booklet (undated (TBS web edition)), “What is the waiver of premium benefit?”",
|
| 5472 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5473 |
},
|
| 5474 |
{
|
|
|
|
| 5485 |
"text": "Can I appeal the insurer’s decision?\nIf you disagree with the insurer’s decision on an insurance application or a claim for your LTD benefits, you can appeal to the insurer. If the insurer’s decision remains unchanged, the Board of Trustees can review your case. The Board can only make recommendations to the insurer and cannot overrule their decisions. If you want the Board of Trustees to review your case, write to the following:\nSecretary to the PSMIP Board of Trustees Employee Relations and Total Compensation Sector Treasury Board of Canada Secretariat 90 Elgin St 3 rd Floor Ottawa ON K1A 0R5",
|
| 5486 |
"history": "",
|
| 5487 |
"last_amended": "",
|
| 5488 |
+
"current_to": "undated (TBS web edition)",
|
| 5489 |
+
"citation": "PSMIP Main Plan Booklet (undated (TBS web edition)), “Can I appeal the insurer’s decision?”",
|
| 5490 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5491 |
},
|
| 5492 |
{
|
|
|
|
| 5503 |
"text": "Privacy and protection of personal information\nWho can access personal information in my file? Personal information used to adjudicate your claim for LTD benefits is held by the insurer. Authorized employees or other persons working for or on behalf of the insurer are allowed access to this information while performing their duties, as outlined above. You have the right to have access to the information on file and correct it if needed. You must make any such request in writing to the insurer.",
|
| 5504 |
"history": "",
|
| 5505 |
"last_amended": "",
|
| 5506 |
+
"current_to": "undated (TBS web edition)",
|
| 5507 |
+
"citation": "PSMIP Main Plan Booklet (undated (TBS web edition)), “Privacy and protection of personal information”",
|
| 5508 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5509 |
},
|
| 5510 |
{
|
|
|
|
| 5521 |
"text": "Contact information\nWho can I contact for more information? Your departmental compensation services or the Public Service Pay Centre can provide you with further information on: conditions of membership application procedures commencement, continuation, termination or cancellation of coverage claim procedures\nHow can I contact the insurer? You can contact the insurer at the following: Long-Term Disability benefits Telephone (toll-free): 1-800-830-1255 Email: disabilityclaims@ia.ca Fax (toll-free): 1-877-781-1583 Mail: iA Financial Group Group Life and Disability Claims Department (PSMIP) PO Box 4643, Station A Toronto, ON, M5W 5E3 Life Insurance benefits Telephone (toll-free): 1-800-830-1255 Email: PSMIP@ia.ca Fax (toll-free): 1-877-781-1583 Mail: iA Financial Group Group Life and Disability Claims Department (PSMIP) PO Box 4643, Station A Toronto ON M5W 5E3 You should quote the following when contacting the insurer regarding a claim: group policy number (G68-1400) name of the member nature of the claim employing department (or agency) of the member or the office held by the member The claim forms and details regarding procedures will be sent to you or your beneficiary.",
|
| 5522 |
"history": "",
|
| 5523 |
"last_amended": "",
|
| 5524 |
+
"current_to": "undated (TBS web edition)",
|
| 5525 |
+
"citation": "PSMIP Main Plan Booklet (undated (TBS web edition)), “Contact information”",
|
| 5526 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5527 |
},
|
| 5528 |
{
|
|
|
|
| 5539 |
"text": "Who can I contact for more information?\nYour departmental compensation services or the Public Service Pay Centre can provide you with further information on:\n- conditions of membership\n- application procedures\n- commencement, continuation, termination or cancellation of coverage\n- claim procedures",
|
| 5540 |
"history": "",
|
| 5541 |
"last_amended": "",
|
| 5542 |
+
"current_to": "undated (TBS web edition)",
|
| 5543 |
+
"citation": "PSMIP Main Plan Booklet (undated (TBS web edition)), “Who can I contact for more information?”",
|
| 5544 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5545 |
},
|
| 5546 |
{
|
|
|
|
| 5557 |
"text": "How can I contact the insurer?\nYou can contact the insurer at the following:\nLong-Term Disability benefits\n- Telephone (toll-free): 1-800-830-1255\n- Email: disabilityclaims@ia.ca\n- Fax (toll-free): 1-877-781-1583\n- Mail: iA Financial Group Group Life and Disability Claims Department (PSMIP) PO Box 4643, Station A Toronto, ON, M5W 5E3\nLife Insurance benefits\n- Telephone (toll-free): 1-800-830-1255\n- Email: PSMIP@ia.ca\n- Fax (toll-free): 1-877-781-1583\n- Mail: iA Financial Group Group Life and Disability Claims Department (PSMIP) PO Box 4643, Station A Toronto ON M5W 5E3\nYou should quote the following when contacting the insurer regarding a claim:\n- group policy number (G68-1400)\n- name of the member\n- nature of the claim\n- employing department (or agency) of the member or the office held by the member\nThe claim forms and details regarding procedures will be sent to you or your beneficiary.",
|
| 5558 |
"history": "",
|
| 5559 |
"last_amended": "",
|
| 5560 |
+
"current_to": "undated (TBS web edition)",
|
| 5561 |
+
"citation": "PSMIP Main Plan Booklet (undated (TBS web edition)), “How can I contact the insurer?”",
|
| 5562 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5563 |
},
|
| 5564 |
{
|
|
|
|
| 5575 |
"text": "Appendix\nThe following table outlines the treatment of benefits payable under the Public Service Superannuation Act (PSSA) as offsets from Long-Term Disability (LTD) benefits.\nTable A1: treatment of benefits payable under the Public Service Superannuation Act (PSSA) as offsets from Long-Term Disability (LTD) benefits Circumstance Public Service Superannuation Act benefit options Offset from Long-Term Disability Plan 1. Termination with less than two years’ service Return of contributions No offset 2. PSSA disability retirement approved Immediate annuity Lump-sum payment Offset immediately in full amount Offset immediately by amount equal to immediate annuity until full amount of lump sum has been offset 3. PSSA disability retirement applied for but not approved Deferred annuity at age 60 Annual allowance from age 50 onward Transfer value Return of contributions Offset at age 60 Offset when payable Monthly offset at age 60 by amount equal to deferred annuity but capped when total of transfer value or lump sum has been offset 4. Application for PSSA disability retirement not made Immediate annuity Deferred annuity at age 60 Annual allowance from age 50 onward Transfer value Return of contributions Offset immediately by full amount Offset immediately by amount of equivalent immediate annuity unless you prove that an application for a disability retirement had been declined; capped when total of transfer value or return of contributions has been offset Where such proof is provided, offsets as in circumstance 3",
|
| 5576 |
"history": "",
|
| 5577 |
"last_amended": "",
|
| 5578 |
+
"current_to": "undated (TBS web edition)",
|
| 5579 |
+
"citation": "PSMIP Main Plan Booklet (undated (TBS web edition)), “Appendix”",
|
| 5580 |
"source_url": "https://www.canada.ca/en/treasury-board-secretariat/services/benefit-plans/management-insurance-plan/main-plan-booklet.html"
|
| 5581 |
}
|
| 5582 |
]
|
|
The diff for this file is too large to render.
See raw diff
|
|
|
|
@@ -99,7 +99,7 @@ class SourceKeyTests(unittest.TestCase):
|
|
| 99 |
chunk(doc_type="legislation", act_code="C-46", section="34", id="C-46-s34"),
|
| 100 |
])
|
| 101 |
self.assertEqual(idx._source_key(0), idx._source_key(1)) # same section
|
| 102 |
-
self.assertEqual(idx._source_key(0), ("
|
| 103 |
self.assertIsNone(idx._source_key(2)) # whole section
|
| 104 |
|
| 105 |
def test_benefits_sections_are_not_capped(self):
|
|
|
|
| 99 |
chunk(doc_type="legislation", act_code="C-46", section="34", id="C-46-s34"),
|
| 100 |
])
|
| 101 |
self.assertEqual(idx._source_key(0), idx._source_key(1)) # same section
|
| 102 |
+
self.assertEqual(idx._source_key(0), ("piece", "C-46-s2"))
|
| 103 |
self.assertIsNone(idx._source_key(2)) # whole section
|
| 104 |
|
| 105 |
def test_benefits_sections_are_not_capped(self):
|
|
@@ -50,6 +50,19 @@ class InForceTests(unittest.TestCase):
|
|
| 50 |
self.assertEqual(by_sec["40"]["in_force"], "2001-06-28")
|
| 51 |
|
| 52 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 53 |
class RepealStatusTests(unittest.TestCase):
|
| 54 |
def test_wholly_repealed_section_is_flagged(self):
|
| 55 |
self.assertEqual(_parse()["13"]["status"], "repealed")
|
|
|
|
| 50 |
self.assertEqual(by_sec["40"]["in_force"], "2001-06-28")
|
| 51 |
|
| 52 |
|
| 53 |
+
class AmendmentStubTests(unittest.TestCase):
|
| 54 |
+
def test_matches_bare_amendment_markers(self):
|
| 55 |
+
for s in ["30 [Amendment]", "162 [Amendments]", "5 [Related provision]",
|
| 56 |
+
"5.1 [Related provisions]"]:
|
| 57 |
+
self.assertTrue(ingest._AMENDMENT_STUB.match(s), s)
|
| 58 |
+
|
| 59 |
+
def test_does_not_match_real_or_repealed_content(self):
|
| 60 |
+
for s in ["13 [Repealed, 2018, c. 27, s. 174]",
|
| 61 |
+
"34 The Minister may [Amendment] later amend...",
|
| 62 |
+
"40 Inadmissibility on security grounds"]:
|
| 63 |
+
self.assertIsNone(ingest._AMENDMENT_STUB.match(s), s)
|
| 64 |
+
|
| 65 |
+
|
| 66 |
class RepealStatusTests(unittest.TestCase):
|
| 67 |
def test_wholly_repealed_section_is_flagged(self):
|
| 68 |
self.assertEqual(_parse()["13"]["status"], "repealed")
|