Я пытаюсь получить схему json из файла класса c #, который имеет несколько классов.
Я сгенерировал файл класса c # (файл * .cs), используя xsd.exe и предоставив файлы схемы xml (файлы xsd)(поскольку основной xsd имеет 2 импорта, поэтому он должен предоставить 2 других файла xsd в той же строке в команде xsd.exe)
т.е. команда для создания файла класса c # с использованием файлов xsd
C:\Users\user1\jsonschema>xsd.exe /c main_1.xsd imported_1.xsd xml.xsd /o:C:\Users\user1\jsonschema\output\
Microsoft (R) Xml Schemas/DataTypes support utility
[Microsoft (R) .NET Framework, Version 2.0.50727.3038]
Copyright (C) Microsoft Corporation. All rights reserved.
Writing file 'C:\Users\user1\jsonschema\output\main_1_xml.cs'.
В файле main_1_xml.cs я вижу определение нескольких классов, теперь мне нужно преобразовать этот c # в схему json.Я не знаю, как сделать эту часть.В идеале я ищу один файл jsonschema.
Я признаю, что я новичок в c #, поэтому не знаю много классов / сериализации или другой логики, которая преобразует классы c # в формат / схему json.
Anyпомощь высоко ценится.
[Отредактировано: в соответствии с предложением Zohar для включения более подробной информации]
В основном есть файл xsd и с помощью xsd.exe я создаю файл класса c #.Этот файл класса имеет несколько подклассов / определений классов.Сейчас я пытаюсь преобразовать это определение класса в формат схемы json.
здесь приведено содержимое файла класса c # (более 170 определений классов sub / parital, но простота сохраняется только 2:
using System.Xml.Serialization;
using System.Collections.Generic;
using Newtonsoft.Json;
//
// This source code was auto-generated by xsd, Version=2.0.50727.3038.
//
Имя файла: Program.cs
class Program // I have manually added this class and next line opening bracket for main class "Program"
{
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(AnonymousType=true, Namespace="http://example.org/content/")]
[System.Xml.Serialization.XmlRootAttribute(Namespace="http://example.org/content/2018/", IsNullable=false)]
public partial class newItem : AnyItemType {
private ContentMetadataAfDType contentMetaField;
private AssertType[] assertField;
private inlineRef[] inlineRefField;
private object[] items1Field;
private contentSet contentSetField;
/// <remarks/>
public ContentMetadataAfDType contentMeta {
get {
return this.contentMetaField;
}
set {
this.contentMetaField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("assert")]
public AssertType[] assert {
get {
return this.assertField;
}
set {
this.assertField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("inlineRef")]
public inlineRef[] inlineRef {
get {
return this.inlineRefField;
}
set {
this.inlineRefField = value;
}
}
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("derivedFrom", typeof(derivedFrom))]
[System.Xml.Serialization.XmlElementAttribute("derivedFromValue", typeof(derivedFromValue))]
public object[] Items1 {
get {
return this.items1Field;
}
set {
this.items1Field = value;
}
}
/// <remarks/>
public contentSet contentSet {
get {
return this.contentSetField;
}
set {
this.contentSetField = value;
}
}
}
/// <remarks/>
[System.CodeDom.Compiler.GeneratedCodeAttribute("xsd", "2.0.50727.3038")]
[System.SerializableAttribute()]
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.ComponentModel.DesignerCategoryAttribute("code")]
[System.Xml.Serialization.XmlTypeAttribute(Namespace="http://www.example.org/content")]
[System.Xml.Serialization.XmlRootAttribute("internal", Namespace="http://www.example.org/0809/content", IsNullable=false)]
public partial class internalType {
private object[] itemsField;
/// <remarks/>
[System.Xml.Serialization.XmlElementAttribute("altId", typeof(altId), Namespace="http://example.org/content/2006-10-01/")]
[System.Xml.Serialization.XmlElementAttribute("audience", typeof(AudienceType), Namespace="http://example.org/content/2006-10-01/")]
[System.Xml.Serialization.XmlElementAttribute("contentMetaExtProperty", typeof(RSF_ContentMetaExtProperty_Flex2ExtPropType), Namespace="http://example.org/content/2006-10-01/")]
[System.Xml.Serialization.XmlElementAttribute("itemMetaExtProperty", typeof(RSF_ItemMetaExtProperty_Flex2ExtPropType), Namespace="http://example.org/content/2006-10-01/")]
[System.Xml.Serialization.XmlElementAttribute("subject", typeof(subject), Namespace="http://example.org/content/2006-10-01/")]
public object[] Items {
get {
return this.itemsField;
}
set {
this.itemsField = value;
}
}
}
} // I have manually added this close bracket for main class "Program"
в том же файле Program.cs, я добавил еще один класс и включаю основной метод и логику для генерации вывода json с использованием Newtonsoft
class json
{
/* below code to get the name of the classes from the namespace - was trying something
public Type[] GetTypesInNamespace(Assembly assembly, string nameSpace)
{
return
assembly.GetTypes()
.Where(t => String.Equals(t.Namespace, nameSpace, StringComparison.Ordinal))
.ToArray();
}
*/
public static void Main(string[] args)
{
Console.WriteLine("Hello World!");
Program Generation = new Program();
var schemaGenerator = new Newtonsoft.Json.Schema.Generation.JSchemaGenerator();
schemaGenerator.GenerationProviders.Add(new Newtonsoft.Json.Schema.Generation.StringEnumGenerationProvider());
// if we give just main class name "Program, then in the out we get just 3 lines json format with type value as object"
var schema = schemaGenerator.Generate(typeof(JsonSchema.Program));
// if we pass-in main class and it's sub class name, then we get output of that sub class content as json format
//var schema = schemaGenerator.Generate(typeof(JsonSchema.Program.newsItem));
//Console.WriteLine(schema);
File.WriteAllText(@"Program1.json", schema.ToString());
//Program program = new Program();
//string strResultJson = JsonConvert.SerializeObject(program);
//File.WriteAllText(@"Program.json", strResultJson);
//Console.WriteLine("Worked!");
/*
logic to get the sub classnames and loop through inorder to all sub classes content as single json schema in one file
List<Type> theList = Assembly.GetExecutingAssembly().GetTypes().Where(t => t.Namespace == "JsonSchema").ToList();
Console.WriteLine(theList);
//File.WriteAllText(@"Classnames.json", theList.ToString());
for (int i = 0; i < theList.Count; i++)
{
Console.WriteLine(theList[i].Name); // this gives full list of class names
File.WriteAllText(@"Classnames.json", theList[i].Name); // this writes only last classname, guess I need to figureout how to append
//File.WriteAllLines(@"Classnames.json", i);
}
*/
}
}