I receive JSON objects that looks like the one below. How can I convert it into a format that is easily handled by Swift 2.1 ? I will receive several of these and have to put them into an array and sort by createdAt.
Optional({
    comment = "<null>";
    completedAt = "<null>";
    createdAt = "2015-11-02 15:01:04 +0000";
    paid = 1;
    paidAt = "2015-11-02 15:01:04 +0000";
    startedAt = "<null>";
    state = request;
    type = doctor;
    user = KTsCySacEAiz3eDnf;
    userdata =     {
        birthdate = "<null>";
        gender = "<null>";
    };
})
 
    