-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxml.oas.yml
48 lines (47 loc) · 990 Bytes
/
xml.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
openapi: 3.1.0
info:
title: xml example
description: Demonstrate the use of XML bodies
version: 1.0.0
paths:
/animals/{id}:
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: integer
minimum: 1
maximum: 10
required: true
example: 7
responses:
"200":
description: successful operation
content:
"application/xml":
schema:
$ref: '#/components/schemas/Cat'
components:
schemas:
Cat:
type: object
required:
- id
- name
- owner
- meow
additionalProperties: false
properties:
id:
type: number
name:
type: string
owner:
type: string
meow:
type: string