CIAPI.CodeGenerator.SchemaParser.GetTypes C# (CSharp) Method

GetTypes() public method

public GetTypes ( ) : JObject>.Dictionary
return JObject>.Dictionary
        public Dictionary<string, JObject> GetTypes()
        {
            var types = new Dictionary<string, JObject>();
            var typeList = (JObject)Schema["properties"];
            foreach (var tPair in typeList)
            {
                string typeName = tPair.Key;
                var typeObj = (JObject)tPair.Value;
                types.Add(typeName, typeObj);
            }
            return types;
        }