OpenAPI-Specification icon indicating copy to clipboard operation
OpenAPI-Specification copied to clipboard

The OpenAPI Specification Repository

Results 476 OpenAPI-Specification issues
Sort by recently updated
recently updated
newest added

According to the [spec](https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.0.1.md#parameterExplode), "When `style` is `form`, the default value [for explode] is true. For all other styles, the default value is false." However, according to [this documentation](https://swagger.io/docs/specification/serialization/), in...

clarification
param serialization

Hello there. Can we get some clarification on: - cookie parameter example values using form serialization - rfc6570 template clarification for all style and parameter type combos? I am asking...

clarification
param serialization

The OpenAPI 2.0 Specification states that its goal is [“to define a standard, language-agnostic interface to REST APIs”](https://github.com/OAI/OpenAPI-Specification). REST is an extremely popular style for implementing APIs that run over...

Hello, I have two endpoinds 1 - Returns single Object 2 - Returns arrays of objects ![image](https://user-images.githubusercontent.com/10340023/171875622-b20cb456-a88f-4bf7-9dd2-dd37e06be62e.png) I would like to use same SearchResultResponseExample for both endpoints, but in code...

I've come across the requirement of defining an _immutable_ field, that is, one that can only be set when the resource is created (POST). The field is not allowed to...

schema-object

It would be useful if you could tag schema properties and parameters as being sensitive or PII specific so that these could be tagged appropriately in API docs.

security
schema-object
format-registry
security: meta

Currently, OpenAPI allows us to identify the version of the API being described and deprecate operations using a Boolean value. I would like to propose some additional metadata that makes...

versioning

Is it possible to group parameters ? For ex: Header "address" has parameters street,city,state

re-use: ref-group-combine

#### Idea Sometimes you have some parameters you want to provide on every path. At the moment it is possible to reference them with the `$ref` tag. This works great...

overlay-candidate
re-use: ref-group-combine

Suppose we have such OpenAPI document which served by location http://example.com/openapi/desc ```yaml servers: - url: 'http://example.com/' components: schemas: Pet: type: object required: - petType properties: petType: type: string discriminator: propertyName:...

discriminator