-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathservers.oas.yml
67 lines (67 loc) · 1.55 KB
/
servers.oas.yml
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
openapi: 3.1.0
info:
title: anyOf / oneOf example
description: Demonstrate the valid use of anyOf and oneOf
version: 1.0.0
servers:
- url: /v1 # <- ignored by PactFlow
paths:
/animals/{id}: # <- Pact tests must match this path, the server URL is not considered
get:
summary: Find animal by ID
description: Returns a single animal
operationId: getAnimalByID
parameters:
- name: id
in: path
description: ID of animal to get
schema:
type: string
required: true
example: "10"
responses:
"200":
description: successful operation
content:
"application/json":
schema:
additionalProperties: true # <- Take note!
oneOf:
- $ref: '#/components/schemas/Cat'
- $ref: '#/components/schemas/Dog'
"400":
description: Invalid ID supplied
content: {}
"404":
description: animal not found
content: {}
components:
schemas:
Dog:
type: object
required:
- name
- owner
- bark
additionalProperties: false
properties:
name:
type: string
owner:
type: string
bark:
type: string
Cat:
type: object
required:
- name
- owner
- meow
additionalProperties: false
properties:
name:
type: string
owner:
type: string
meow:
type: string