Removed unused file (#18325)

This commit is contained in:
Michito Maeda
2024-04-08 16:44:08 +09:00
committed by GitHub
parent 79fe176ef2
commit 101b3fcc35

51
w
View File

@@ -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'