namespace Api.Requests { public sealed class IndexDocumentRequest { public string? Text { get; set; } public string? SourceUrl { get; set; } public string? DocumentType { get; set; } public string? Title { get; set; } public Dictionary? Metadata { get; set; } } }