Sample code for 30+ languages & platforms
Xbase++

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 Xbase++ Downloads

Xbase++
LOCAL oJson

//  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"
//  }

oJson := CreateObject("Chilkat.JsonObject")
oJson:UpdateBool("accountEnabled", 1)
oJson:I := 0
oJson:UpdateString("assignedLicenses[i].disabledPlans[0]", "bea13e0c-3828-4daa-a392-28af7ff61a0f")
oJson:UpdateString("assignedLicenses[i].skuId", "skuId-value")
oJson:UpdateString("assignedPlans[i].assignedDateTime", "datetime-value")
oJson:UpdateString("assignedPlans[i].capabilityStatus", "capabilityStatus-value")
oJson:UpdateString("assignedPlans[i].service", "service-value")
oJson:UpdateString("assignedPlans[i].servicePlanId", "bea13e0c-3828-4daa-a392-28af7ff61a0f")
oJson:UpdateString("businessPhones[i]", "businessPhones-value")
oJson:UpdateString("city", "city-value")
oJson:UpdateString("companyName", "companyName-value")

oJson:EmitCompact := 0
? oJson: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"
//  }

oJson:destroy()