diff --git a/output/openapi/elasticsearch-serverless-openapi.json b/output/openapi/elasticsearch-serverless-openapi.json index 9ade9c2791..5973b3e05c 100644 --- a/output/openapi/elasticsearch-serverless-openapi.json +++ b/output/openapi/elasticsearch-serverless-openapi.json @@ -49735,10 +49735,7 @@ "_meta": { "$ref": "#/components/schemas/_types:Metadata" } - }, - "required": [ - "_meta" - ] + } }, "ingest._types:ProcessorContainer": { "type": "object", diff --git a/output/schema/schema.json b/output/schema/schema.json index 1aaaa71f97..3f9985a945 100644 --- a/output/schema/schema.json +++ b/output/schema/schema.json @@ -130716,7 +130716,7 @@ { "description": "Arbitrary metadata about the ingest pipeline. This map is not automatically generated by Elasticsearch.", "name": "_meta", - "required": true, + "required": false, "type": { "kind": "instance_of", "type": { diff --git a/output/typescript/types.ts b/output/typescript/types.ts index 889dff57d9..2b9e6d4f89 100644 --- a/output/typescript/types.ts +++ b/output/typescript/types.ts @@ -11762,7 +11762,7 @@ export interface IngestPipeline { on_failure?: IngestProcessorContainer[] processors?: IngestProcessorContainer[] version?: VersionNumber - _meta: Metadata + _meta?: Metadata } export interface IngestPipelineConfig {