From b08f11a24577483e549bc7213ce0079b02213ae1 Mon Sep 17 00:00:00 2001 From: Thad Guidry Date: Thu, 11 Apr 2024 20:56:55 +0800 Subject: [PATCH 1/2] Clarify data type as integer for `limit` parameter - 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. --- draft/index.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/draft/index.html b/draft/index.html index 28aa6ff..4d3e597 100644 --- a/draft/index.html +++ b/draft/index.html @@ -830,11 +830,11 @@

Data Extension Property Proposals

A data extension property proposal service returns properties for a given type identifier.

- If the reconciliation service supports data extension property proposals, it MUST support HTTP GET requests to the endpoint /extend/propose (relative to the reconciliation endpoint) with a type query string parameter + If the reconciliation service supports data extension property proposals, it MUST support HTTP GET requests to the endpoint /extend/propose (relative to the reconciliation endpoint) with a type query parameter containing a type identifier.

- The service SHOULD support an optional limit query string parameter to control the number of proposed properties. + The service SHOULD support an optional limit query parameter to control the number of proposed properties.

GET /extend/propose?type=<type identifier>[&limit=<limit>]
@@ -847,7 +847,7 @@

Data Extension Property Proposals

type
The type identifier supplied in the query;
limit
-
Optionally, the requested limit;
+
Optionally, an integer to control the number of proposed properties returned for the given type;

From b5922fd07c1c30ae1e869a3777a77931382aee2c Mon Sep 17 00:00:00 2001 From: Thad Guidry Date: Thu, 11 Apr 2024 21:07:22 +0800 Subject: [PATCH 2/2] Update draft/index.html Co-authored-by: Fabian Steeg --- draft/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/draft/index.html b/draft/index.html index 4d3e597..fdaee8e 100644 --- a/draft/index.html +++ b/draft/index.html @@ -847,7 +847,7 @@

Data Extension Property Proposals

type
The type identifier supplied in the query;
limit
-
Optionally, an integer to control the number of proposed properties returned for the given type;
+
Optionally, an integer to indicate the requested limit;