in src/Elastic.Ingest.Elasticsearch/Serialization/BulkOperationHeader.cs [91:97]
private static void WriteDynamicTemplates(Utf8JsonWriter writer, JsonSerializerOptions options, Dictionary<string, string>? templates)
{
if (templates is not { Count: > 0 }) return;
writer.WritePropertyName("dynamic_templates");
JsonSerializer.Serialize(writer, templates, options);
}