diff --git a/index.html b/index.html index 510bebc..58bb35b 100644 --- a/index.html +++ b/index.html @@ -1291,56 +1291,6 @@

their contents.

-
-

- Discovering Service Endpoints -

- -

- A website may provide service endpoint discovery by embedding JSON-LD in their - top-most HTML web page (e.g. at https://example.com/): -

- -
-  <!DOCTYPE html>
-  <html lang="en">
-    <head>
-      <meta charset="utf-8">
-      <title>Example Website</title>
-      <link rel="stylesheet" href="style.css">
-      <script src="script.js"></script>
-      <script type="application/ld+json">
-  {
-    "@context": "https://w3id.org/encrypted-data-vaults/v1",
-    "id": "https://example.com/",
-    "name": "Example Website",
-    "dataVaultManagementService": "https://example.com/data-vaults"
-  }
-      </script>
-    </head>
-    <body>
-      <!-- page content -->
-    </body>
-  </html>
-          
- -

- Service descriptions may also be requested via content negotiation. - In the following example a JSON-compatible service description is provided - (e.g. curl -H "Accept: application/json" https://example.com/): -

- -
-  {
-    "@context": "https://w3id.org/encrypted-data-vaults/v1",
-    "id": "https://example.com/",
-    "name": "Example Website",
-    "dataVaultCreationService": "https://example.com/data-vaults"
-  }
-          
- -
-

Creating an Encrypted Data Vault