Metaproduct Entity

{
    metaproduct: {
        idMetaproduct:                      // metaproduct ID
        name: [                             // a name entity per supported language
            {
                idLanguage:                 // language ID
                languageName:               // language's name in English
                metaproductName:            // metaproduct's name in the given language
            }
        ]
        products: {                         // products belonging to the metaproduct
            idProduct: [                    // product IDs for each product
            ]
        }
    }
}

See also: Name Entity

Example Entity

{
    metaproduct: {
        idMetaproduct: 2923
        name: [
            {
                idLanguage: 1
                languageName: "English"
                metaproductName: "Island"
            }
            {
                idLanguage: 2
                languageName: "French"
                metaproductName: "Île"
            }
        ]
        products: {
            idProduct: [
                266361
                266360
                266359
                266358
            ]
        }
    }
}