Sample code for 30+ languages & platforms
Rust

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

Rust
// 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 = chilkat::JsonObject::new();
let _ = json.update_bool("accountEnabled", true);
json.set_i(0);
let _ = json.update_string("assignedLicenses[i].disabledPlans[0]", "bea13e0c-3828-4daa-a392-28af7ff61a0f");
let _ = json.update_string("assignedLicenses[i].skuId", "skuId-value");
let _ = json.update_string("assignedPlans[i].assignedDateTime", "datetime-value");
let _ = json.update_string("assignedPlans[i].capabilityStatus", "capabilityStatus-value");
let _ = json.update_string("assignedPlans[i].service", "service-value");
let _ = json.update_string("assignedPlans[i].servicePlanId", "bea13e0c-3828-4daa-a392-28af7ff61a0f");
let _ = json.update_string("businessPhones[i]", "businessPhones-value");
let _ = json.update_string("city", "city-value");
let _ = json.update_string("companyName", "companyName-value");

json.set_emit_compact(false);
println!("{}", json.emit().unwrap_or_default());

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