JSON中不同类型的集合

时间:2014-08-02 02:30:41

标签: json

我有3个不同的架构 - s1,s2& s3 ,并希望使用父对象 P 中的这些架构对象。基本上,收集不同类型的对象但无法找到为此案例创建JSON规范的方法。有人可以帮忙吗?

1 个答案:

答案 0 :(得分:0)

不确定我是否理解正确,但这是您正在寻找的吗?

{
    "ParentSchema": {
        "ChildSchema1": {
            "title": "S1",
            "description" : "Schema1"
        },
        "ChildSchema2": {
            "title": "S2",
            "description" : "Schema2"
        },
        "ChildSchema3": {
            "title": "S3",
            "description" : "Schema3"
        }
    }
}