Does the order of resources matter when creating metadata in json format?

I am creating a metadata in json format. in the maintenance app for example when working on category you start by creating categoryOption, categories, categoryCombos, etc…

In the json document I am creating does it matter if I set it up so that the independent resources come first like:

{
 "categoryOptions": [],
 "categories": [],
 "categoryCombos: [],
 ...
}

or the dependent come first like

{
 "categoryCombos: [],
 "categories": [],
 "categoryOptions": [],
 ...
}

Please note that this document will contain all other resources for this metadata. So I will also need to factor in the order for other resources if the order matters.

Hi @jetisco4u

if you upload all together it doesn’t matter. otherwise yes, just follow the order in the CATEGORY menu

2 Likes

Big thanks. I am uploading all together. This will be very helpful and time-saving.

1 Like