Each JsonObject has a properties JsonObject, and within that, the values we need are Resource ID, String: KOR, String: BASE, and String: JPN. In other words, without needing to examine the entire structure, simply following the path results → JsonObject → properties allows us to easily access the desired data. Now that we understand the data structure, let’s go extract the values we want! results (JsonArray)→ element (JsonObject)→ properties (JsonObject)→ Resource ID (JsonObject), String: KOR (JsonObject)Accessing in this order and extracting plain_text yields the desired value (String). To do this, we first prepare the basic XML structure and then merge the extracted string data into it.