inthefabric / Fabric

The collective mind awaits your input.
www.inthefabric.com
Other
5 stars 0 forks source link

Invalid FabSpecEnum.Data "Type" value in the JSON spec #1

Closed zachkinstner closed 11 years ago

zachkinstner commented 11 years ago

The relevant section from the JSON spec:

        {
          "Name": "FabSpecEnum",
          "Extends": "FabSpecObject",
          "IsBaseClass": false,
          "Properties": [
            {
              "Name": "Data",
              "Type": "Dictionary`2[]",
              "FabType": "FabSpecObjectProp"
            }
          ],
          "FabType": "FabSpecObject"
        }
zachkinstner commented 11 years ago

Based on FabSpecEnum, the correct value is:

"Type": "Dictionary<string, object>[]"