Skip to content

Commit e381663

Browse files
authored
Merge pull request #471 from RepreZen/task/469
[#469] Remove quotes from some ref placeholders (WIP)
2 parents 4d5b358 + 62cc24b commit e381663

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

com.reprezen.swagedit.openapi3/resources/templates.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ email: ${contact_email}</template>
7070
content:
7171
application/json:
7272
schema:
73-
$$ref: "${itemSchema}"
73+
$$ref: ${itemSchema}
7474
'404':
7575
description: Not Found
7676
patch:
@@ -80,7 +80,7 @@ email: ${contact_email}</template>
8080
content:
8181
"application/json":
8282
schema:
83-
$$ref: "${itemSchema}"
83+
$$ref: ${itemSchema}
8484
parameters:
8585
- name: ${id}
8686
in: path
@@ -128,15 +128,15 @@ email: ${contact_email}</template>
128128
schema:
129129
type: array
130130
items:
131-
$$ref: "${itemSchema}"
131+
$$ref: ${itemSchema}
132132
post:
133133
description: Create a new ${item}
134134
requestBody:
135135
description: description
136136
content:
137137
"application/json":
138138
schema:
139-
$$ref: "${itemSchema}"
139+
$$ref: ${itemSchema}
140140
responses:
141141
'201':
142142
description: Created
@@ -159,15 +159,15 @@ email: ${contact_email}</template>
159159
content:
160160
application/json:
161161
schema:
162-
$$ref: "${itemSchema}"
162+
$$ref: ${itemSchema}
163163
put:
164164
description: Create a new ${item}
165165
requestBody:
166166
description: description
167167
content:
168168
"application/json":
169169
schema:
170-
$$ref: "${itemSchema}"
170+
$$ref: ${itemSchema}
171171
responses:
172172
'201':
173173
description: Created
@@ -575,4 +575,4 @@ items:
575575
'text/html':
576576
schema:
577577
$$ref: "${errorModel}"</template>
578-
</templates>
578+
</templates>

0 commit comments

Comments
 (0)