Merge pull request #19936 from jmcclelland/only-include-completed
[civicrm-core.git] / tests / phpunit / api / v4 / DataSets / DefaultDataSet.json
CommitLineData
19b53e5b
C
1{
2 "Contact": [
3 {
4 "first_name": "Phoney",
5 "last_name": "Contact",
6 "contact_type": "Individual",
7 "@ref": "test_contact_1"
8 },
9 {
10 "first_name": "Second",
11 "last_name": "Test",
12 "contact_type": "Individual",
13 "@ref": "test_contact_2"
14 }
15 ],
16 "Activity": [
17 {
18 "subject": "Test Phone Activity",
03b67004 19 "activity_type_id:name": "Phone Call",
19b53e5b
C
20 "source_contact_id": "@ref test_contact_1.id"
21 },
22 {
23 "subject": "Another Activity",
03b67004 24 "activity_type_id:name": "Meeting",
19b53e5b
C
25 "source_contact_id": "@ref test_contact_1.id",
26 "assignee_contact_id": [
27 "@ref test_contact_1.id",
28 "@ref test_contact_2.id"
29 ]
30 }
31 ],
32 "Phone": [
33 {
34 "contact_id": "@ref test_contact_1.id",
35 "phone": "+35355439483",
36 "location_type_id": "1",
37 "@ref": "test_phone_1"
38 },
39 {
40 "contact_id": "@ref test_contact_1.id",
41 "phone": "+3538733439483",
42 "location_type_id": "2"
43 }
7de13161
CW
44 ],
45 "Address": [
46 {
47 "contact_id": "@ref test_contact_1.id",
48 "street_address": "123 Sesame St.",
49 "country_id": "1228",
50 "location_type_id": "1",
51 "@ref": "test_address_1"
52 }
19b53e5b
C
53 ]
54}