github.com/thetreep/go-swagger@v0.0.0-20240223100711-35af64f14f01/fixtures/bugs/2700/2700.yaml (about)

     1  ---
     2  swagger: "2.0"
     3  info:
     4    description: someTest
     5    title: test
     6    version: "0.0.0"
     7  consumes:
     8    - application/json
     9  produces:
    10    - application/json
    11  paths:
    12    /upload:
    13      post:
    14        operationId: someTest
    15        responses:
    16          200:
    17            description: Successful upload
    18            schema:
    19              $ref: "#/definitions/myModel"
    20  
    21  definitions:
    22   myModel:
    23     type: object
    24     properties:
    25       fsType:
    26         description: |-
    27           Filesystem type of the volume that you want to mount.
    28           Tip: Ensure that the filesystem type is supported by the host operating system.
    29           Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified.
    30           More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore
    31  
    32           TODO: how do we prevent errors in the filesystem from compromising the machine
    33