I would like to find the best way to use the following JSON (values of a signal) throught Backbone.js Model Concept :
{
frequency: "1/1",
items: [
{
value: 1,
quality: 5
},
{
value: 0.5,
quality: 5
}
]
}
So far I only see Backbone.Collections usable on objects without level-list properties (e.g :frequency) like the following :
[
{
value: 1,
quality: 5
},
{
value: 0.5,
quality: 5
}
]