I have a json schema and I need to convert it to a C# object or at least into json string.
is there any way to do it by code or by using some tool?
for the Json I'm currently using Json.net.
this is one of my schema:
{
  "$schema": "http://json-schema.org/draft-04/schema#",
  "title": "UserGroupWsDTO",
  "type": "object",
  "properties":
  {
    "members":
    {
      "type": "array",
      "items":
      {
        "type": "object",
        "properties":
        {
          "uid":
          {
            "type": "string"
          }
        }
      }
    },
    "uid":
    {
      "type": "string"
    },
    "name":
    {
      "type": "string"
    }
  }
}
I need this to create an Object for deserialize the json
EDIT My Json schema version is 4 and JSON Schema to POCO doesn't support it
 
     
    