-
Notifications
You must be signed in to change notification settings - Fork 147
Closed
Labels
area/generatorAffects: plugin, CLI, config file.Affects: plugin, CLI, config file.kind/bugFeature doesn't work as expected.Feature doesn't work as expected.kind/supportAdopter support requests.Adopter support requests.status/blockedWaiting for another issue.Waiting for another issue.
Milestone
Description
The exploded query parameter style is not working in current version (0.3.4). It used to work properly in previous version (0.1.11)
example openapi.yaml
openapi: '3.0.3'
info:
description:
version: 2023.8.26
title: example
servers:
- url: https://example
paths:
/example:
get:
operationId: example
parameters:
- name: LocationId
required: false
in: query
style: form
explode: false
schema:
type: array
items:
type: string
It now yields:
https://example/example?LocationId=1&LocationId=2
But it is expected to be:
https://example/example?LocationId=1,2
Originally posted by @luomein in #258 (comment)
Metadata
Metadata
Assignees
Labels
area/generatorAffects: plugin, CLI, config file.Affects: plugin, CLI, config file.kind/bugFeature doesn't work as expected.Feature doesn't work as expected.kind/supportAdopter support requests.Adopter support requests.status/blockedWaiting for another issue.Waiting for another issue.