Sample code for 30+ languages & platforms
AutoIt

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 AutoIt Downloads

AutoIt
; 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 = ObjCreate("Chilkat.JsonObject")
$oJson.UpdateBool("accountEnabled",True)
$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 = False
ConsoleWrite($oJson.Emit() & @CRLF)

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