-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoneOf.pact.json
79 lines (79 loc) · 1.66 KB
/
oneOf.pact.json
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
{
"consumer": {
"name": "animal-consumer"
},
"provider": {
"name": "animal-provider"
},
"interactions": [
{
"description": "a request to get a Dog",
"request": {
"method": "GET",
"path": "/animals/1",
"headers": {
"Authorization": "Bearer 2019-01-14T11:34:18.045Z"
}
},
"response": {
"status": 200,
"headers": {
"Content-Type": "application/json"
},
"body": {
"petType": "Dog",
"name": "Rover",
"owner": "Drover",
"bark": "dry"
}
}
},
{
"description": "a request to get a Cat",
"request": {
"method": "GET",
"path": "/animals/2",
"headers": {
"Authorization": "Bearer 2019-01-14T11:34:18.045Z"
}
},
"response": {
"status": 200,
"headers": {
"Content-Type": "application/json"
},
"body": {
"petType": "Cat",
"name": "kitty",
"owner": "crazy cat lady",
"meow": "squeely"
}
}
},
{
"description": "a request to get a Cat (would fail if no discriminator)",
"request": {
"method": "GET",
"path": "/animals/2",
"headers": {
"Authorization": "Bearer 2019-01-14T11:34:18.045Z"
}
},
"response": {
"status": 200,
"headers": {
"Content-Type": "application/json"
},
"body": {
"petType": "Cat",
"name": "kitty"
}
}
}
],
"metadata": {
"pactSpecification": {
"version": "2.0.0"
}
}
}