using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization.Formatters;
using System.ComponentModel.DataAnnotations;
using System.Globalization;
using System.Collections.ObjectModel;
using Newtonsoft.Json.Linq;
using Newtonsoft.Json.Converters;
using Newtonsoft.Json.Serialization;
using Newtonsoft.Json.Schema;
public static void Test()
JSchema schema = JSchema.Parse(@"{
'additionalProperties' : false,
'name': {'type':'string'},
'age': {'type':'integer'}
'jobTitle': 'Junior Vice President'
var data = JObject.Parse(jsonString);
var isValid = data.IsValid(schema, out IList<ValidationError> errors);
Console.WriteLine(string.Join("\n", errors.Select(e => string.Format($"ErrorType: {e.ErrorType}, Path: {e.Path}"))));
foreach (var error in errors)
if (error.ErrorType == ErrorType.AdditionalProperties)
data.SelectToken(error.Path)?.RemoveFromLowestPossibleParent();
public static partial class JsonExtensions
public static JToken RemoveFromLowestPossibleParent(this JToken node)
var property = node.Parent as JProperty;
var contained = property ?? node;
if (contained.Parent != null)
public static void Main()
Console.WriteLine("Environment version: {0} ({1})", System.Runtime.InteropServices.RuntimeInformation.FrameworkDescription , GetNetCoreVersion());
Console.WriteLine("{0} version: {1}", typeof(JsonSerializer).Assembly.GetName().Name, typeof(JsonSerializer).Assembly.FullName);
Console.WriteLine("{0} version: {1}", typeof(JsonSerializer).Assembly.GetName().Name, typeof(JSchema).Assembly.FullName);
Console.WriteLine("Failed with unhandled exception: ");
public static string GetNetCoreVersion()
var assembly = typeof(System.Runtime.GCSettings).GetTypeInfo().Assembly;
var assemblyPath = assembly.Location.Split(new[] { '/', '\\' }, StringSplitOptions.RemoveEmptyEntries);
int netCoreAppIndex = Array.IndexOf(assemblyPath, "Microsoft.NETCore.App");
if (netCoreAppIndex > 0 && netCoreAppIndex < assemblyPath.Length - 2)
return assemblyPath[netCoreAppIndex + 1];