1{
2"records" :[{
3 "attributes" : {"type" : "Account", "referenceId" : "ref1"},
4 "name" : "SampleAccount1",
5 "phone" : "1234567890",
6 "website" : "www.salesforce.com",
7 "numberOfEmployees" : "100",
8 "industry" : "Banking",
9 "Contacts" : {
10 "records" : [{
11 "attributes" : {"type" : "Contact", "referenceId" : "ref2"},
12 "lastname" : "Smith",
13 "Title" : "President",
14 "email" : "sample@salesforce.com"
15 },{
16 "attributes" : {"type" : "Contact", "referenceId" : "ref3"},
17 "lastname" : "Evans",
18 "title" : "Vice President",
19 "email" : "sample@salesforce.com"
20 }]
21 }
22 },{
23 "attributes" : {"type" : "Account", "referenceId" : "ref4"},
24 "name" : "SampleAccount2",
25 "phone" : "1234567890",
26 "website" : "www.salesforce.com",
27 "numberOfEmployees" : "52000",
28 "industry" : "Banking",
29 "childAccounts" : {
30 "records" : [{
31 "attributes" : {"type" : "Account", "referenceId" : "ref5"},
32 "name" : "SampleChildAccount1",
33 "phone" : "1234567890",
34 "website" : "www.salesforce.com",
35 "numberOfEmployees" : "100",
36 "industry" : "Banking"
37 }]
38 },
39 "Contacts" : {
40 "records" : [{
41 "attributes" : {"type" : "Contact", "referenceId" : "ref6"},
42 "lastname" : "Jones",
43 "title" : "President",
44 "email" : "sample@salesforce.com"
45 }]
46 }
47 }]
48}