diff --git a/output/openapi/elasticsearch-openapi.json b/output/openapi/elasticsearch-openapi.json index 5addfc0585..d80a3988c6 100644 --- a/output/openapi/elasticsearch-openapi.json +++ b/output/openapi/elasticsearch-openapi.json @@ -10404,16 +10404,6 @@ }, "style": "form" }, - { - "in": "query", - "name": "stored_fields", - "description": "A comma-separated list of stored fields to return as part of a hit.", - "deprecated": false, - "schema": { - "$ref": "#/components/schemas/_types.Fields" - }, - "style": "form" - }, { "in": "query", "name": "version", diff --git a/output/openapi/elasticsearch-serverless-openapi.json b/output/openapi/elasticsearch-serverless-openapi.json index 098820dfae..265767defc 100644 --- a/output/openapi/elasticsearch-serverless-openapi.json +++ b/output/openapi/elasticsearch-serverless-openapi.json @@ -5986,16 +5986,6 @@ }, "style": "form" }, - { - "in": "query", - "name": "stored_fields", - "description": "A comma-separated list of stored fields to return as part of a hit.", - "deprecated": false, - "schema": { - "$ref": "#/components/schemas/_types.Fields" - }, - "style": "form" - }, { "in": "query", "name": "version", diff --git a/output/schema/schema.json b/output/schema/schema.json index cd54bf5103..69f29a5c21 100644 --- a/output/schema/schema.json +++ b/output/schema/schema.json @@ -30124,18 +30124,6 @@ } } }, - { - "description": "A comma-separated list of stored fields to return as part of a hit.", - "name": "stored_fields", - "required": false, - "type": { - "kind": "instance_of", - "type": { - "name": "Fields", - "namespace": "_types" - } - } - }, { "description": "The version number for concurrency control.\nIt must match the current version of the document for the request to succeed.", "name": "version", @@ -30161,7 +30149,7 @@ } } ], - "specLocation": "_global/get_source/SourceRequest.ts#L31-L116" + "specLocation": "_global/get_source/SourceRequest.ts#L31-L112" }, { "kind": "response", diff --git a/output/schema/validation-errors.json b/output/schema/validation-errors.json index 1259b65ab4..ca0031ceeb 100644 --- a/output/schema/validation-errors.json +++ b/output/schema/validation-errors.json @@ -31,12 +31,6 @@ ], "response": [] }, - "get_source": { - "request": [ - "Request: query parameter 'stored_fields' does not exist in the json spec" - ], - "response": [] - }, "msearch": { "request": [ "Request: query parameter 'allow_no_indices' does not exist in the json spec", diff --git a/output/typescript/types.ts b/output/typescript/types.ts index f6b81b7311..f7a490f255 100644 --- a/output/typescript/types.ts +++ b/output/typescript/types.ts @@ -462,7 +462,6 @@ export interface GetSourceRequest extends RequestBase { _source?: SearchSourceConfigParam _source_excludes?: Fields _source_includes?: Fields - stored_fields?: Fields version?: VersionNumber version_type?: VersionType } diff --git a/specification/_global/get_source/SourceRequest.ts b/specification/_global/get_source/SourceRequest.ts index 75b24cc628..bf8f338273 100644 --- a/specification/_global/get_source/SourceRequest.ts +++ b/specification/_global/get_source/SourceRequest.ts @@ -99,10 +99,6 @@ export interface Request extends RequestBase { * A comma-separated list of source fields to include in the response. */ _source_includes?: Fields - /** - * A comma-separated list of stored fields to return as part of a hit. - */ - stored_fields?: Fields /** * The version number for concurrency control. * It must match the current version of the document for the request to succeed.