Type alias AzureAISearchDocumentMetadata
 
AzureAISearchDocumentMetadata: { 
    source: string; 
    attributes?: { 
        key: string; 
        value: string; 
    }[]; 
    embedding?: number[]; 
}
Type declaration
- 
source: string
- 
Optionalattributes?: {
 key: string;
 value: string;
 }[]
- 
Optionalembedding?: number[]
 
 
Azure AI Search options metadata schema. If yout want to add custom data, use the attributes property.