Skip to content

Commit

Permalink
Renamed IdentityRequestProvider to DigitalCredentialsProvider (#71)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcoscaceres committed Aug 6, 2024
1 parent 609238d commit 6458e4f
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ <h2>
</h2>
<pre class="idl">
dictionary DigitalCredentialRequestOptions {
sequence&lt;IdentityRequestProvider&gt; providers;
sequence&lt;DigitalCredentialsProvider&gt; providers;
};
</pre>
<h3>
Expand All @@ -194,16 +194,16 @@ <h3>
software, such as a digital wallet.
</p>
<h2>
The `IdentityRequestProvider` dictionary
The `DigitalCredentialsProvider` dictionary
</h2>
<p>
The {{IdentityRequestProvider}} dictionary is used to specify an
The {{DigitalCredentialsProvider}} dictionary is used to specify an
[=digital credential/exchange protocol=] and a [=digital
credential/query=], which the user agent MAY match against software used
by a holder, such as a digital wallet.
</p>
<pre class="idl">
dictionary IdentityRequestProvider {
dictionary DigitalCredentialsProvider {
required DOMString protocol;
required object request;
};
Expand All @@ -212,20 +212,20 @@ <h3>
The `protocol` member
</h3>
<p>
The <dfn data-dfn-for="IdentityRequestProvider">protocol</dfn> member
The <dfn data-dfn-for="DigitalCredentialsProvider">protocol</dfn> member
denotes the [=digital credential/exchange protocol=] when requesting an
identify credential.
</p>
<p>
The {{IdentityRequestProvider/protocol}} member's value is be one of the
The {{DigitalCredentialsProvider/protocol}} member's value is be one of the
well-defined keys defined in [[[#protocol-registry]]] or any other custom
one.
</p>
<h3>
The `request` member
</h3>
<p>
The <dfn data-dfn-for="IdentityRequestProvider">request</dfn> member is
The <dfn data-dfn-for="DigitalCredentialsProvider">request</dfn> member is
the request to be handled by the holder's software, such as a digital
wallet.
</p>
Expand Down

0 comments on commit 6458e4f

Please sign in to comment.