I want to parse through "People" in both "Events" and import them into unique nodes. In this example I would end up with 4 imported nodes. I only care about the First and Last names, not the event id. Is this possible?

[
    {
        "eventID": "randomIDhere2",
        "People": [
            {
                "FirstName": "e",
                "LastName": "f"
            },
            {
                "FirstName": "g",
                "LastName": "h"
            }
        ]
    },
    {
        "eventID": "randomIDhere2",
        "People": [
            {
                "FirstName": "a",
                "LastName": "b"
            },
            {
                "FirstName": "c",
                "LastName": "d"
            }
        ]
    }
]

Comments

durum’s picture

Any solutions so far apart from writing your own processor?

durum’s picture

Issue summary: View changes

Updated for accuracy.

HeathN’s picture

Issue summary: View changes

Just a follow up on this, I ended up just using the Migrate module. If you know PHP at all it is a way better option.

twistor’s picture

Status: Active » Closed (fixed)