Helen Kosova

Results 65 comments of Helen Kosova

Related feature request(?) in the JSON Schema repo: [`immutable` keyword](https://github.com/json-schema-org/json-schema-vocabularies/issues/31)

@axl8713 your example is unfortunately not a valid construct in OpenAPI. > ```yaml > parameters: > - allOf: > - $ref: '#/components/parameters/filters' > - example: "overridden example" > - $ref:...

@rupamkhaitan Swagger UI issue that you mentioned is tracked here: https://github.com/swagger-api/swagger-ui/issues/4740

Related (or duplicate): #4826, #6462

@Rinzwind ``` "resourceFork": { "anyOf": [ { "type": "null" }, { "$ref": "#/components/schemas/Fork" } ] ``` `"type": "null"` is not valid in OpenAPI, because [there's no `null` type](https://swagger.io/docs/specification/data-models/data-types/#null) - that's...

Looks correct to me. OAS 3.0's JSON Schema is defined using Draft 4, where the [`exclusiveMinimum`](https://datatracker.ietf.org/doc/html/draft-fge-json-schema-validation-00#section-5.1.3) keyword is a boolean. The `exclusiveM*imum` keywords were [changed from booleans to numbers](https://json-schema.org/draft-06/json-schema-release-notes.html) in...

Your last example `?map[x]=1&map[y]=2` can be defined an an object parameter with `style: deepObject`: ```yaml parameters: - in: query name: map schema: type: object properties: x: type: integer y: type:...

The Specification is the source of truth - so the cookies are not exploded by default. I've fixed the swagger.io doc. If you notice any other info on the Swagger...

Related request: https://github.com/OAI/OpenAPI-Specification/issues/1288 "More and complete examples for serialization styles"