/** * This file was auto-generated by Fern from our API Definition. */ export interface SearchResultDocumentRequest { /** The ID of the document. */ id?: string | null; /** The human-readable name for the document. */ label: string; /** The unique ID of the document as represented in an external system and specified when it was originally uploaded. */ externalId?: string | null; /** A previously supplied JSON object containing metadata that can be filtered on when searching. */ metadata?: Record | null; }