1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
| { "records": [ { "attributes": { "type": "Property__c", "referenceId": "18HenryStRef" }, "Name": "Stunning Victorian", "Address__c": "18 Henry St", "City__c": "Cambridge", "State__c": "MA", "Zip__c": "01742", "Price__c": 975000, "Title__c": "Stunning Victorian", "Beds__c": 4, "Baths__c": 3, "Location__Longitude__s": -71.11095, "Location__Latitude__s": 42.35663, "Picture__c": "https://s3-us-west-1.amazonaws.com/sfdc-demo/realty/house01.jpg", "Thumbnail__c": "https://s3-us-west-1.amazonaws.com/sfdc-demo/realty/house01sq.jpg", "Description__c": "Lorem ipsum dolor sit amet", "Broker__c": "@CarolineBrookerRef" }, { "attributes": { "type": "Property__c", "referenceId": "24PearlStRef" }, "Name": "Ultimate Sophistication", "Address__c": "24 Pearl St", "City__c": "Cambridge", "State__c": "MA", "Zip__c": "02420", "Price__c": 1200000, "Title__c": "Ultimate Sophistication", "Beds__c": 5, "Baths__c": 4, "Location__Longitude__s": -71.10869, "Location__Latitude__s": 42.359103, "Picture__c": "https://s3-us-west-1.amazonaws.com/sfdc-demo/realty/house02.jpg", "Thumbnail__c": "https://s3-us-west-1.amazonaws.com/sfdc-demo/realty/house02sq.jpg", "Description__c": "Lorem ipsum dolor sit amet", "Broker__c": "@MichaelJonesRef" } ] } ```
另外一个brokers-data.json,格式如下: ```json { "records": [ { "attributes": { "type": "Broker__c", "referenceId": "CarolineBrookerRef" }, "name": "Caroline Kingsley", "Title__c": "Senior Broker", "Phone__c": "617-244-3672", "Mobile_Phone__c": "617-244-3672", "Email__c": "caroline@dreamhouse.demo", "Picture__c": "https://s3-us-west-1.amazonaws.com/sfdc-demo/people/caroline_kingsley.jpg" }, { "attributes": { "type": "Broker__c", "referenceId": "MichaelJonesRef" }, "name": "Michael Jones", "Title__c": "Senior Broker", "Phone__c": "617-244-3672", "Mobile_Phone__c": "617-244-3672", "Email__c": "michael@dreamhouse.demo", "Picture__c": "https://s3-us-west-1.amazonaws.com/sfdc-demo/people/michael_jones.jpg" } ] }
|