diff --git a/EVENT.md b/EVENT.md
index e688141b7..362dbb832 100644
--- a/EVENT.md
+++ b/EVENT.md
@@ -980,6 +980,11 @@ were reported.
In order to achieve the privacy goals listed above the API has various rate limits, which can be found [here](https://github.com/WICG/attribution-reporting-api/blob/main/params/chromium-params.md) for Chromium.
+Note: Browsers may choose to allow separate limits, e.g. storage limit,
+rate-limits, and destination limits, for the embedded site/origin for specific
+use cases (for example, [AMP](https://amp.dev) pages rendered by an AMP
+cache/viewer provider).
+
### Trigger Data
Trigger data, e.g. advertiser-side data, is extremely important for critical use
diff --git a/index.bs b/index.bs
index 74875eff6..ae61e04ab 100644
--- a/index.bs
+++ b/index.bs
@@ -1875,8 +1875,14 @@ To check if cookie-based debugging is allowed given a
Obtaining context origin
-To obtain the context origin of a [=node=] |node|, return |node|'s [=node navigable=]'s
-[=navigable/top-level traversable=]'s [=navigable/active document=]'s [=origin=].
+To obtain the context origin of a [=node=] |node|:
+
+1. Optionally, return the embedded origin if it exists.
+1. Return |node|'s [=node navigable=]'s [=navigable/top-level traversable=]'s
+ [=navigable/active document=]'s [=origin=].
+
+Note: The user agent may return the embedded origin to allow separate limits
+for specific use cases.
Obtaining a randomized response
diff --git a/verbose_debugging_reports.md b/verbose_debugging_reports.md
index 046c56a47..393a1ad71 100644
--- a/verbose_debugging_reports.md
+++ b/verbose_debugging_reports.md
@@ -39,7 +39,9 @@ The `body` will contain the following fields for all source debugging reports:
This will be a string if there was one such site, or a list of strings if
there were multiple.
* `source_event_id`: The source registration's `source_event_id`.
-* `source_site`: The top-level site on which the source registration occurred.
+* `source_site`: The top-level site, or the embedded site for specific use cases
+ (for example, [AMP](https://amp.dev) pages rendered by an AMP cache/viewer provider),
+ on which the source registration occurred.
Additionally:
@@ -155,8 +157,9 @@ Additionally:
* If the trigger was attributed to a source, then the `body` will also contain
the following fields:
* `source_event_id`: The source registration's `source_event_id`.
- * `source_site`: The top-level site on which the source registration
- occurred.
+ * `source_site`: The top-level site, or the embedded site for specific use cases
+ (for example, [AMP](https://amp.dev) pages rendered by an AMP cache/viewer provider),
+ on which the source registration occurred.
* `source_debug_key`: The source registration's `debug_key`, but omitted if
the source registration did not contain a valid `debug_key` or
[cookie-based debugging][] was prohibited.