Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 31 additions & 2 deletions output/schema/schema.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 0 additions & 7 deletions output/schema/validation-errors.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions output/typescript/types.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 11 additions & 0 deletions specification/_global/field_caps/FieldCapabilitiesRequest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ import { RuntimeFields } from '@_types/mapping/RuntimeFields'
import { QueryContainer } from '@_types/query_dsl/abstractions'

/**
* The field capabilities API returns the information about the capabilities of fields among multiple indices.
* The field capabilities API returns runtime fields like any other field. For example, a runtime field with a type
* of keyword is returned as any other field that belongs to the `keyword` family.
* @rest_spec_name field_caps
* @since 5.4.0
* @stability stable
Expand Down Expand Up @@ -62,6 +65,14 @@ export interface Request extends RequestBase {
* @server_default false
*/
include_unmapped?: boolean
/**
* @since 8.2.0
*/
filters?: string
/**
* @since 8.2.0
*/
types?: string[]
}
body: {
/**
Expand Down