JSON API response and ember model names
问题 A quick question about the JSON API response key "type" matching up with an Ember model name. If I have a model, say "models/photo.js" and I have a route like "/photos", my JSON API response looks like this { data: [{ id: "298486374", type: "photos", attributes: { name: "photo_name_1.png", description: "A photo!" } },{ id: "298434523", type: "photos", attributes: { name: "photo_name_2.png", description: "Another photo!" } }] } I'm under the assumption that my model name should be singular but