Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(VBScript) Build JSON with Mixture of Arrays and ObjectsAnother example showing how to build JSON containing a mixture of arrays and objects.
Dim fso, outFile Set fso = CreateObject("Scripting.FileSystemObject") 'Create a Unicode (utf-16) output text file. Set outFile = fso.CreateTextFile("output.txt", True, True) ' 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" ' } ' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.JsonObject") set json = CreateObject("Chilkat.JsonObject") success = json.UpdateBool("accountEnabled",1) json.I = 0 success = json.UpdateString("assignedLicenses[i].disabledPlans[0]","bea13e0c-3828-4daa-a392-28af7ff61a0f") success = json.UpdateString("assignedLicenses[i].skuId","skuId-value") success = json.UpdateString("assignedPlans[i].assignedDateTime","datetime-value") success = json.UpdateString("assignedPlans[i].capabilityStatus","capabilityStatus-value") success = json.UpdateString("assignedPlans[i].service","service-value") success = json.UpdateString("assignedPlans[i].servicePlanId","bea13e0c-3828-4daa-a392-28af7ff61a0f") success = json.UpdateString("businessPhones[i]","businessPhones-value") success = json.UpdateString("city","city-value") success = json.UpdateString("companyName","companyName-value") json.EmitCompact = 0 outFile.WriteLine(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" ' } outFile.Close |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.