... if (not myjson.EndOfArray) then
begin
myjson.BeginArray;
while True do
begin
if myjson.IsObject then // Here I check to see if result is Empty
begin
myjson.BeginObject;
MyStr := myjson.GetPropertyName; //Here I get the "_metadata"
end;
if (not myjson.MoreArrayElements) then
Break;
end;
myjson.EndArray;
end;
<<