I am migrating a course over using an IMSCC. Diving into the xml, I have two module items with attributes as follows:
Item One
1
Item Two
2
They are the only two items underneath a module.
Next, I need to (immediately) get those same items via the API. They come back like this:
{
"title" => "Item One",
"position" => 2,
}, {
"title" => "Item Two",
"position" => 3,
}
My question is, why would their positions increase after migrating the content over?
Thanks!