-
Notifications
You must be signed in to change notification settings - Fork 213
Expand file tree
/
Copy pathopenapi.yaml
More file actions
28 lines (27 loc) · 799 Bytes
/
openapi.yaml
File metadata and controls
28 lines (27 loc) · 799 Bytes
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
openapi: 3.2.0
info:
title: Test API
version: 1.0.0
paths:
/test:
get:
responses:
'200':
content:
application/json:
schema:
type: object
properties:
$ref:
type: string
example:
$ref: example.json # should NOT be resolved
examples:
Test:
summary: Example with $ref in value (should NOT resolve)
value:
$ref: example.json # should NOT be resolved
TestDataValue:
summary: Example with $ref in dataValue (should NOT resolve)
dataValue:
$ref: example.json # should NOT be resolved