Sample code for 30+ languages & platforms
Unicode C++

Build JSON with Mixture of Arrays and Objects

See more JSON Examples

Another example showing how to build JSON containing a mixture of arrays and objects.

Chilkat Unicode C++ Downloads

Unicode C++
#include <CkJsonObjectW.h>

void ChilkatSample(void)
    {
    //  We want to build the following JSON:

    //  { 
    //    "accountEnabled": true,
    //    "assignedLicenses": [
    //      { 
    //        "disabledPlans": [ "bea13e0c-3828-4daa-a392-28af7ff61a0f" ],
    //        "skuId": "skuId-value"
    //      }
    //    ],
    //    "assignedPlans": [
    //      { 
    //        "assignedDateTime": "datetime-value",
    //        "capabilityStatus": "capabilityStatus-value",
    //        "service": "service-value",
    //        "servicePlanId": "bea13e0c-3828-4daa-a392-28af7ff61a0f"
    //      }
    //    ],
    //    "businessPhones": [
    //      "businessPhones-value"
    //    ],
    //    "city": "city-value",
    //    "companyName": "companyName-value"
    //  }

    CkJsonObjectW json;
    json.UpdateBool(L"accountEnabled",true);
    json.put_I(0);
    json.UpdateString(L"assignedLicenses[i].disabledPlans[0]",L"bea13e0c-3828-4daa-a392-28af7ff61a0f");
    json.UpdateString(L"assignedLicenses[i].skuId",L"skuId-value");
    json.UpdateString(L"assignedPlans[i].assignedDateTime",L"datetime-value");
    json.UpdateString(L"assignedPlans[i].capabilityStatus",L"capabilityStatus-value");
    json.UpdateString(L"assignedPlans[i].service",L"service-value");
    json.UpdateString(L"assignedPlans[i].servicePlanId",L"bea13e0c-3828-4daa-a392-28af7ff61a0f");
    json.UpdateString(L"businessPhones[i]",L"businessPhones-value");
    json.UpdateString(L"city",L"city-value");
    json.UpdateString(L"companyName",L"companyName-value");

    json.put_EmitCompact(false);
    wprintf(L"%s\n",json.emit());

    //  Output:

    //  { 
    //    "accountEnabled": true,
    //    "assignedLicenses": [
    //      { 
    //        "disabledPlans": [
    //          "bea13e0c-3828-4daa-a392-28af7ff61a0f"
    //        ],
    //        "skuId": "skuId-value"
    //      }
    //    ],
    //    "assignedPlans": [
    //      { 
    //        "assignedDateTime": "datetime-value",
    //        "capabilityStatus": "capabilityStatus-value",
    //        "service": "service-value",
    //        "servicePlanId": "bea13e0c-3828-4daa-a392-28af7ff61a0f"
    //      }
    //    ],
    //    "businessPhones": [
    //      "businessPhones-value"
    //    ],
    //    "city": "city-value",
    //    "companyName": "companyName-value"
    //  }
    }