/** * Serializer for document facets */ export type DocumentFacet = { /** * Total number of documents in this facet */ total: number; /** * Terms and their counts in this facet */ terms: Record; /** * Count of documents not in any term */ other: number; };