For the example below, I have two products while there is three spl_set_id items.
How can I say which product belongs to which spl_set_id?
spl_set_id: [
"fb4810ec-d26f-429d-b87c-5898a7870169",
"62eda83d-d043-4c7e-8fcf-75d05efbf35b",
"610022b7-7dc9-405a-a580-104657f43bdf"
]
products: [
{
product_number: "001",
reference_drug: "Yes",
brand_name: "SALAGEN",
active_ingredients: [
{
name: "PILOCARPINE HYDROCHLORIDE",
strength: "5MG"
}
],
reference_standard: "No",
dosage_form: "TABLET",
route: "ORAL",
marketing_status: "Prescription",
te_code: "AB"
},
{
product_number: "002",
reference_drug: "Yes",
brand_name: "SALAGEN",
active_ingredients: [
{
name: "PILOCARPINE HYDROCHLORIDE",
strength: "7.5MG"
}
],
reference_standard: "Yes",
dosage_form: "TABLET",
route: "ORAL",
marketing_status: "Prescription",
te_code: "AB"
}
]
For the example below, I have two products while there is three spl_set_id items.
How can I say which product belongs to which spl_set_id?
Thank you all,