From 101b3fcc35449e6c248e0b2eb554396b60acb05b Mon Sep 17 00:00:00 2001 From: Michito Maeda Date: Mon, 8 Apr 2024 16:44:08 +0900 Subject: [PATCH] Removed unused file (#18325) --- w | 51 --------------------------------------------------- 1 file changed, 51 deletions(-) delete mode 100644 w diff --git a/w b/w deleted file mode 100644 index eb9dd279b148..000000000000 --- a/w +++ /dev/null @@ -1,51 +0,0 @@ -openapi: 3.1.0 -info: - title: "" - version: "" - -paths: - /user/getInfo: - get: - operationId: getUserInfo - responses: - "200": - content: - application/json: - schema: - $ref: '#/components/schemas/Bar' - description: | - OK - security: - - Session: [] - x-accepts: application/json - -components: - schemas: - Foo: - type: object - required: - - arrayOfStrings - properties: - arrayOfStrings: - type: array - items: - type: string - - Bar: - allOf: - - $ref: '#/components/schemas/Foo' - Hello: - type: object - properties: - arrayFooOne: - type: array - items: - $ref: '#/components/schemas/Foo' - arrayFooTwo: - type: array - items: - $ref: '#/components/schemas/Foo' - arrayFooThree: - type: array - items: - $ref: '#/components/schemas/Foo'