Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Throw more detailed error messages when encountering Json Schema errors #1707

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions src/NJsonSchema/JsonPathUtilities.cs
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,10 @@ public static class JsonPathUtilities

if (mappings.Any(p => p.Value == null))
{
var errorItems = mappings.Where(p => p.Value == null).Select(x => x.Key.GetType().FullName);
throw new InvalidOperationException("Could not find the JSON path of a referenced schema: " +
"Manually referenced schemas must be added to the " +
string.Join(",", errorItems) +
". Manually referenced schemas must be added to the " +
"'Definitions' of a parent schema.");
}

Expand Down Expand Up @@ -177,4 +179,4 @@ private static bool FindJsonPaths(object obj, Dictionary<object, string?> search
return false;
}
}
}
}
Loading