Skip to content
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion specification/cat/indices/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,11 @@ export class IndicesRecord {
'rep'?: string

/**
* available docs
* The number of documents in the index, including hidden nested documents.
* For indices with `semantic_text` fields or other nested field types,
* this count includes the internal nested documents.
* To get the logical document count (excluding nested documents), use
* the `_count` API or `_cat/count` API instead.
* @aliases dc,docsCount
*/
'docs.count'?: string | null
Expand Down