Skip to content

Commit

Permalink
Clarify data type as integer for limit parameter
Browse files Browse the repository at this point in the history
- Add data type 'integer' to the description for `limit`.
- Also removes "string" in "query string parameter" which made it read and sound like the parameters' were sometimes String datatype. I hate English sometimes.
  • Loading branch information
thadguidry authored Apr 11, 2024
1 parent 2355fb6 commit b08f11a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions draft/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -830,11 +830,11 @@ <h3>Data Extension Property Proposals</h3>
A <dfn>data extension property proposal</dfn> service returns <a>properties</a> for a given <a>type</a> identifier.
</p>
<p>
If the reconciliation service supports data extension property proposals, it MUST support HTTP GET requests to the endpoint <code>/extend/propose</code> (relative to the reconciliation endpoint) with a <code>type</code> query string parameter
If the reconciliation service supports data extension property proposals, it MUST support HTTP GET requests to the endpoint <code>/extend/propose</code> (relative to the reconciliation endpoint) with a <code>type</code> query parameter
containing a type identifier.
</p>
<p>
The service SHOULD support an optional <code>limit</code> query string parameter to control the number of proposed properties.
The service SHOULD support an optional <code>limit</code> query parameter to control the number of proposed properties.
</p>
<p>
<pre class="example nohighlight">GET /extend/propose?type=&lt;type identifier&gt;[&amp;limit=&lt;limit&gt;]</pre>
Expand All @@ -847,7 +847,7 @@ <h3>Data Extension Property Proposals</h3>
<dt><code>type</code></dt>
<dd>The <a>type</a> identifier supplied in the query;</dd>
<dt><code>limit</code></dt>
<dd>Optionally, the requested limit;</dd>
<dd>Optionally, an integer to control the number of proposed properties returned for the given type;</dd>
</dl>
</p>
<p>
Expand Down

0 comments on commit b08f11a

Please sign in to comment.