Skip to content

Commit

Permalink
Fix capitalization of metadata property names.
Browse files Browse the repository at this point in the history
  • Loading branch information
peacekeeper committed Apr 1, 2021
1 parent 977ce9a commit f8d4e50
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -1683,7 +1683,7 @@ <h3>DID Resolution Metadata</h3>
These properties contain information pertaining to the DID resolution response.
</p>
<section>
<h3>content-type</h3>
<h3>contentType</h3>
<table class="simple" style="width: 100%;">
<thead>
<tr>
Expand All @@ -1699,15 +1699,15 @@ <h3>content-type</h3>
</td>
<td></td>
<td>
<a href="cddl/contentType.cddl" target="_blank">content-type.cddl</a>
<a href="cddl/contentType.cddl" target="_blank">contentType.cddl</a>
</td>
</tr>
</tbody>
</table>

<pre class="example" title="Example of content-type metadata property">
<pre class="example" title="Example of contentType metadata property">
{
"content-type": "application/did+ld+json"
"contentType": "application/did+ld+json"
}
</pre>
</section>
Expand Down Expand Up @@ -1738,12 +1738,12 @@ <h3>error</h3>

<pre class="example" title="Example of error metadata property">
{
"error": "not-found"
"error": "notFound"
}
</pre>

<section>
<h4>invalid-did</h4>
<h4>invalidDid</h4>
<table class="simple" style="width: 100%;">
<thead>
<tr>
Expand All @@ -1759,15 +1759,15 @@ <h4>invalid-did</h4>
</tbody>
</table>

<pre class="example" title="Example of invalid-did error value">
<pre class="example" title="Example of invalidDid error value">
{
"error": "invalid-did"
"error": "invalidDid"
}
</pre>
</section>

<section>
<h4>invalid-did-url</h4>
<h4>invalidDidUrl</h4>
<table class="simple" style="width: 100%;">
<thead>
<tr>
Expand All @@ -1783,15 +1783,15 @@ <h4>invalid-did-url</h4>
</tbody>
</table>

<pre class="example" title="Example of invalid-did-url error value">
<pre class="example" title="Example of invalidDidUrl error value">
{
"error": "invalid-did-url"
"error": "invalidDidUrl"
}
</pre>
</section>

<section>
<h4>not-found</h4>
<h4>notFound</h4>
<table class="simple" style="width: 100%;">
<thead>
<tr>
Expand All @@ -1807,9 +1807,9 @@ <h4>not-found</h4>
</tbody>
</table>

<pre class="example" title="Example of not-found error value">
<pre class="example" title="Example of notFound error value">
{
"error": "not-found"
"error": "notFound"
}
</pre>
</section>
Expand Down

0 comments on commit f8d4e50

Please sign in to comment.