openapi: 3.0.1
info:
  title: Swagger API
  version: v1
paths:
  /test:
    post:
      requestBody:
        content:
          application/json:
            schema:
              anyOf:
              - type: array
                required:
                - id
                properties:
                  id:
                    type: string
      responses:
      '200':
        description: Success
