Hi,
(applogies for the newbie question)
Does Alloy support more complex model structures? If so how?
consider the following:
"order" : { "id" : 1, "date" : "2001-01-01T00:00:00.000Z", "orderEntires" : [ { "item" : { "name" : "book1" }, "cost" : 12.95 }, { "item" : { "name" : "book33" }, "cost" : 13.95 }] "customerId": 1236 }something like the above, I do not mind having ids on each object (identity field - http://martinfowler.com/eaaCatalog/identityField.html)
thanks in advance.