From 84d3f229ae88ffceed88335a072da4c212161c60 Mon Sep 17 00:00:00 2001 From: Marci W <333176+marciw@users.noreply.github.com> Date: Fri, 13 Jun 2025 15:58:54 -0400 Subject: [PATCH 1/3] Add example link; fix typos --- specification/_global/get/GetRequest.ts | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/specification/_global/get/GetRequest.ts b/specification/_global/get/GetRequest.ts index 6370063dff..7002b8f059 100644 --- a/specification/_global/get/GetRequest.ts +++ b/specification/_global/get/GetRequest.ts @@ -110,7 +110,7 @@ export interface Request extends RequestBase { query_parameters: { /** * Indicates whether the request forces synthetic `_source`. - * Use this paramater to test if the mapping supports synthetic `_source` and to get a sense of the worst case performance. + * Use this parameter to test if the mapping supports synthetic `_source` and to get a sense of the worst case performance. * Fetches with this parameter enabled will be slower than enabling synthetic source natively in the index. * @availability stack since=8.4.0 visibility=feature_flag feature_flag=es.index_mode_feature_flag_registered */ @@ -163,8 +163,9 @@ export interface Request extends RequestBase { * A comma-separated list of stored fields to return as part of a hit. * If no fields are specified, no stored fields are included in the response. * If this field is specified, the `_source` parameter defaults to `false`. - * Only leaf fields can be retrieved with the `stored_field` option. - * Object fields can't be returned;​if specified, the request fails. + * Only leaf fields can be retrieved with the `stored_fields` option. + * Object fields can't be returned; if specified, the request fails. + * For an example, refer to [Retrieve stored fields](https://www.elastic.co/docs/reference/elasticsearch/rest-apis/retrieve-stored-fields). */ stored_fields?: Fields /** From 539a5b28e3d637c852de2c6531666d55948d1fe1 Mon Sep 17 00:00:00 2001 From: Marci W <333176+marciw@users.noreply.github.com> Date: Tue, 17 Jun 2025 13:50:14 -0400 Subject: [PATCH 2/3] Add link to _doc_ids table --- specification/_doc_ids/table.csv | 1 + 1 file changed, 1 insertion(+) diff --git a/specification/_doc_ids/table.csv b/specification/_doc_ids/table.csv index e4b9e83a96..022a379936 100644 --- a/specification/_doc_ids/table.csv +++ b/specification/_doc_ids/table.csv @@ -602,6 +602,7 @@ reroute-processor,https://www.elastic.co/docs/reference/enrich-processor/reroute render-search-template-api,https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-render-search-template reset-transform,https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-transform-reset-transform restore-snapshot,https://www.elastic.co/docs/deploy-manage/tools/snapshot-and-restore/restore-snapshot +retrieve-stored-fields,https://www.elastic.co/docs/reference/elasticsearch/rest-apis/retrieve-stored-fields role-restriction,https://www.elastic.co/docs/deploy-manage/users-roles/cluster-or-deployment-auth/role-restriction rollup-agg-limitations,https://www.elastic.co/docs/manage-data/lifecycle/rollup/rollup-aggregation-limitations rollup-delete-job,https://www.elastic.co/docs/api/doc/elasticsearch/operation/operation-rollup-delete-job From 3fae5180bcfcf891dfd88f05162480a712c73c5c Mon Sep 17 00:00:00 2001 From: Marci W <333176+marciw@users.noreply.github.com> Date: Tue, 17 Jun 2025 13:51:06 -0400 Subject: [PATCH 3/3] Apply suggestion to use @ext_doc_id MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: István Zoltán Szabó --- specification/_global/get/GetRequest.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specification/_global/get/GetRequest.ts b/specification/_global/get/GetRequest.ts index 7002b8f059..15d2fcdfe7 100644 --- a/specification/_global/get/GetRequest.ts +++ b/specification/_global/get/GetRequest.ts @@ -165,7 +165,7 @@ export interface Request extends RequestBase { * If this field is specified, the `_source` parameter defaults to `false`. * Only leaf fields can be retrieved with the `stored_fields` option. * Object fields can't be returned; if specified, the request fails. - * For an example, refer to [Retrieve stored fields](https://www.elastic.co/docs/reference/elasticsearch/rest-apis/retrieve-stored-fields). + * @ext_doc_id retrieve-stored-fields */ stored_fields?: Fields /**