Skip to content
Merged
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;
}
}
}
}