Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Mark form parameters as required when body is required #331

Merged
merged 2 commits into from
Mar 17, 2019

Conversation

skrysmanski
Copy link
Contributor

This pull request fixes the problem that when a form request body is marked as "required", then all form parameters should also be marked as "required".

For example, take this (shortened) input spec:

paths:
  /test_required:
    post:
      summary: Operation with form body that is required
      requestBody:
        required: true
        content:
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/Category'

components:
  schemas:
    Category:
      type: object
      properties:
        id:
          type: integer
          format: int64
        name:
          type: string

It results in 2 form parameters (id and name). Without this fix both parameters would be marked as "optional", even though the request body is marked as "required".

@HugoMario HugoMario merged commit e101a41 into swagger-api:master Mar 17, 2019
@HugoMario
Copy link
Contributor

awesome, thanks !!!

@knoxg
Copy link

knoxg commented Mar 3, 2025

I think this ticket should be reverted. Just because an object is required does not make all the fields in that object required. I think the problem described above would be better fixed by making the 'id' and 'name' fields required if that's what @skrysmanski was trying to do.

It should always be possible within an object hierarchy to have a required object which contains optional fields, so with that in mind I don't see why making a requestBody required should make the fields in the object of that request also required. The fields that are required should be marked as required, so that it is possible to have a mix of both required and optional fields.

Related tickets where this change has caused problems:

This might come down to semantics around what 'required' means on the requestBody, but it seems the interpretation in this PR is wrong, it seems much more likely that OpenAPI would want to support optional fields on required objects. i.e. being able to express that

  • a request body is required, but
  • some fields within that object are optional and some fields are required

is a use-case that swagger should support.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants