![]()  | 
  
Chilkat  HOME  Android™  AutoIt  C  C#  C++  Chilkat2-Python  CkPython  Classic ASP  DataFlex  Delphi DLL  Go  Java  Node.js  Objective-C  PHP Extension  Perl  PowerBuilder  PowerShell  PureBasic  Ruby  SQL Server  Swift  Tcl  Unicode C  Unicode C++  VB.NET  VBScript  Visual Basic 6.0  Visual FoxPro  Xojo Plugin
 
      (AutoIt) Build JSON with Mixture of Arrays and ObjectsAnother example showing how to build JSON containing a mixture of arrays and objects. 
 ; 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" ; }  | 
  ||||
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.