using Newtonsoft.Json.Linq;
public static void Main()
"type": "https://tools.ietf.org/html/rfc9110#section-15.5.1",
"title": "One or more validation errors occurred.",
"traceId": "00-cc3037e141d56ea1adcbdbde913ed632-e966a771e4c06b4f-00"}
JObject o = JObject.Parse(json);
var jpath1 = (string)o.SelectToken("Errors.Name[0]");
Console.WriteLine(string.IsNullOrEmpty(jpath1) ? "JPath not found" : jpath1);
var jpath2 = (string)o.SelectToken("errors.Name[0]");
Console.WriteLine(string.IsNullOrEmpty(jpath2) ? "JPath not found" : jpath2);