File: x_enum_varnames.yaml

package info (click to toggle)
python-datamodel-code-generator 0.34.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,376 kB
  • sloc: python: 19,882; makefile: 15
file content (61 lines) | stat: -rw-r--r-- 1,054 bytes parent folder | download
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
openapi: "3.0.0"
components:
  schemas:
    string:
      type: string
      enum:
        - 'dog'
        - 'cat'
        - 'snake'
    unknown_type_string:
      enum:
        - 'dog'
        - 'cat'
        - 'snake'
    named_string:
      type: string
      description: Operator to filter data by.
      enum:
        - '='
        - '!='
        - '>'
        - '<'
        - '>='
        - '<='
      x-enum-varnames:
        - EQ
        - NE
        - GT
        - LT
        - GE
        - LE
      example: '>='
      xml:
        attribute: true
    named_number:
      type: number
      description: Operator to filter data by.
      enum:
        - 1
        - 2
        - 3
      x-enum-varnames:
        - one
        - two
        - three
      example: 1
    number:
      type: number
      description: Operator to filter data by.
      enum:
        - 1
        - 2
        - 3
      example: 1
    unknown_type_number:
      description: Operator to filter data by.
      enum:
        - 1
        - 2
        - 3
      example: 1