forked from OpenAPITools/openapi-generator
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathissue21334.yaml
More file actions
43 lines (43 loc) · 999 Bytes
/
issue21334.yaml
File metadata and controls
43 lines (43 loc) · 999 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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
openapi: 3.0.3
info:
title: Issue 21334 - Abstract PHP Variable Naming Convention
description: ''
version: 1.0.0
paths:
/dummy:
get:
description: ''
operationId: getDummy
parameters:
- name: paramCamelCase
in: query
required: false
schema:
type: string
- name: ParamPascalCase
in: query
required: false
schema:
type: string
- name: param_withRandomCase
in: query
required: false
schema:
type: string
responses:
'200':
description: successful operation
components:
schemas:
SampleModelToTestNamingConvention:
type: object
properties:
propCamelCase:
type: string
default: 'defaultName'
PropPascalCase:
type: string
default: 'DefaultName'
Prop_withRandomCase:
type: string
default: 'defaultName'