[assemblydoc] Update reference docs for main
diff --git a/main/sdk/assembly/ProductConfig/README.md b/main/sdk/assembly/ProductConfig/README.md
index 6dea7ac..3af43c1 100644
--- a/main/sdk/assembly/ProductConfig/README.md
+++ b/main/sdk/assembly/ProductConfig/README.md
@@ -4,6 +4,12 @@
 
 <table>
     <tr><th>Field</th><th>Type</th><th>Description</th><th>Default</th></tr>
+        <tr id="trusted_apps">
+            <td><code>trusted_apps</code></td>
+            <td><code>vector</code></td>
+            <td>Components which depend on trusted applications running in the TEE.</td>
+            <td></td>
+        </tr>
         <tr id="session_url">
             <td><code>session_url</code></td>
             <td><code>string</code></td>
diff --git a/main/sdk/assembly/README.md b/main/sdk/assembly/README.md
index 9cc3834..196a621 100644
--- a/main/sdk/assembly/README.md
+++ b/main/sdk/assembly/README.md
@@ -373,6 +373,10 @@
     <td>Platform configuration options for the input area.</td>
 </tr>
 <tr>
+    <td><a href="/reference/assembly/TrustedApp">TrustedApp</a></td>
+    <td>A configuration for a component which depends on TEE-based protocols. Examples include components which implement DRM, or authentication services.</td>
+</tr>
+<tr>
     <td><a href="/reference/assembly/Type">Type</a></td>
     <td>The type if intl configuration to be used.</td>
 </tr>
diff --git a/main/sdk/assembly/TrustedApp/README.md b/main/sdk/assembly/TrustedApp/README.md
new file mode 100644
index 0000000..db84d64
--- /dev/null
+++ b/main/sdk/assembly/TrustedApp/README.md
@@ -0,0 +1,31 @@
+# TrustedApp
+
+A configuration for a component which depends on TEE-based protocols. Examples include components which implement DRM, or authentication services.
+
+<table>
+    <tr><th>Field</th><th>Type</th><th>Description</th><th>Default</th></tr>
+        <tr id="guids">
+            <td><code>guids</code></td>
+            <td><code>vector</code></td>
+            <td>GUIDs which of the form fuchsia.tee.Application.{GUID} will match a protocol provided by the TEE.</td>
+            <td></td>
+        </tr>
+        <tr id="component_url">
+            <td><code>component_url</code></td>
+            <td><code>string</code></td>
+            <td>The URL of the component.</td>
+            <td></td>
+        </tr>
+        <tr id="capabilities">
+            <td><code>capabilities</code></td>
+            <td><code>vector</code></td>
+            <td>Capabilities provided by this component which should be routed to the rest of the system.</td>
+            <td></td>
+        </tr>
+        <tr id="additional_required_protocols">
+            <td><code>additional_required_protocols</code></td>
+            <td><code>vector</code></td>
+            <td>Additional protocols which are required for this component to work, and which will be routed from &#x27;parent&#x27;</td>
+            <td></td>
+        </tr>
+</table>