Skip to content

Commit

Permalink
Fixing typos and indentations (#3462)
Browse files Browse the repository at this point in the history
* Fixing typos and indentations

* Update actions.html
  • Loading branch information
compulim committed May 13, 2024
1 parent 3bb68d9 commit 28da3a2
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions docs/actions.html
Original file line number Diff line number Diff line change
Expand Up @@ -510,7 +510,7 @@ <h2 id="part-4"><strong>Part 4: Input and Output constraints</strong></h2>
<b>"url-output": "required",</b>
<b>"confirmationNumber-output": "required",</b>
<b>"orderNumber-output": "required",</b>
<b>orderStatus-output": "required"</b>
<b>"orderStatus-output": "required"</b>
}
}
}</pre>
Expand All @@ -519,7 +519,7 @@ <h2 id="part-4"><strong>Part 4: Input and Output constraints</strong></h2>

<br /><span style="margin-left: 20px;"><strong><em>request</em></strong></span>

<pre>POST https://example.com/products/ipod/buy</span><br/>
<pre>POST https://example.com/products/ipod/buy
</pre>


Expand All @@ -531,11 +531,11 @@ <h2 id="part-4"><strong>Part 4: Input and Output constraints</strong></h2>
"actionStatus": "CompletedActionStatus",
"object": "https://example.com/products/ipod",
"result": {
"@type": "Order",
<b>"url": "http://example.com/orders/1199334"</b>
<b>"confirmationNumber": "1ABBCDDF23234",</b>
<b>"orderNumber": "1199334",</b>
<b>"orderStatus": "PROCESSING"</b>
"@type": "Order",
<b>"url": "http://example.com/orders/1199334",</b>
<b>"confirmationNumber": "1ABBCDDF23234",</b>
<b>"orderNumber": "1199334",</b>
<b>"orderStatus": "PROCESSING"</b>
}
}
</pre>
Expand All @@ -554,8 +554,8 @@ <h2 id="part-4"><strong>Part 4: Input and Output constraints</strong></h2>
"<b>urlTemplate</b>": "https://api.example.com/review",
"encodingType": "application/ld+json",
"contentType": "application/ld+json"
},<br/>
<b>"object" : {</b>
},
<b>"object": {</b>
"@type": "Movie",
<b>"url-input": "required",</b>
},
Expand All @@ -564,7 +564,7 @@ <h2 id="part-4"><strong>Part 4: Input and Output constraints</strong></h2>
<b>"url-output": "required",</b>
<b>"reviewBody-input": "required",</b>
"reviewRating": {
<b>"ratingValue-input": "required"</b>
<b>"ratingValue-input": "required"</b>
}
}
}
Expand All @@ -578,11 +578,11 @@ <h2 id="part-4"><strong>Part 4: Input and Output constraints</strong></h2>
<div style="overflow-x: scroll; margin-left: 20px; width: auto;">
<pre class="small prettyprint lang-html linenums jsonld ">POST https://api.example.com/review

{
{
"@context": "https://schema.org",
"@type": "ReviewAction",
"object" : {
"@id": "http://example.com/movies/123"
"object": {
"@id": "http://example.com/movies/123"
},
"result": {
"@type": "Review",
Expand All @@ -603,7 +603,7 @@ <h2 id="part-4"><strong>Part 4: Input and Output constraints</strong></h2>
"@context": "https://schema.org",
"@type": "ReviewAction",
"actionStatus": "CompletedActionStatus",
"result" : {
"result": {
"@type": "Review",
"url"<b>: "http://example.com/reviews/abc"</b>
}
Expand All @@ -617,4 +617,4 @@ <h2 id="part-4"><strong>Part 4: Input and Output constraints</strong></h2>
<!-- #### Static Doc Insert Footer here -->

</body>
</html>
</html>

0 comments on commit 28da3a2

Please sign in to comment.