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
(Swift 3,4,5...) Build JSON with Mixture of Arrays and ObjectsAnother example showing how to build JSON containing a mixture of arrays and objects.
func chilkatTest() { // 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" // } let json = CkoJsonObject()! json.updateBool("accountEnabled", value: true) json.i = 0 json.update("assignedLicenses[i].disabledPlans[0]", value: "bea13e0c-3828-4daa-a392-28af7ff61a0f") json.update("assignedLicenses[i].skuId", value: "skuId-value") json.update("assignedPlans[i].assignedDateTime", value: "datetime-value") json.update("assignedPlans[i].capabilityStatus", value: "capabilityStatus-value") json.update("assignedPlans[i].service", value: "service-value") json.update("assignedPlans[i].servicePlanId", value: "bea13e0c-3828-4daa-a392-28af7ff61a0f") json.update("businessPhones[i]", value: "businessPhones-value") json.update("city", value: "city-value") json.update("companyName", value: "companyName-value") json.emitCompact = false print("\(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" // } } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.