-
Which API Manager 2.6.0
When I define the basic API as :
openapi: 3.0.0
paths:
/post:
post:
requestBody:
content:
application/json:
schema:
…
-
Documenting APIs often depend on multiple external factors - functional and non-functional aspects, change notes, governance, strategy, many more - and a single externalDocs reference is often insuffi…
ghost updated
5 months ago
-
While investigating a documentation defect, I ran `openapi-examples-validator` and saw that it reported 13 examples, but if I ran a regexp for `examples?:` I got 24 matches, and my OAS spec is passing…
-
I want to generate enum with integer values assigned.
Swift:
``` swift
enum Weather: Int {
case Sunny = 1
case Cloudy = 2
case Rainy = 3
}
```
Java:
``` java
public enum Weather {
…
-
## Weekly meetings happen on Thursdays at 9am - 10am Pacific
This agenda gives visibility into discussion topics for the weekly Technical Developer Community (TDC) meetings. Sharing agenda items in a…
-
I compiled petstore https://raw.githubusercontent.com/OAI/OpenAPI-Specification/master/examples/v3.0/petstore.yaml
```
gnostic petstore.json --pb-out=.
```
in my python
```python
from sys…
-
# Options for describing APIs associated with Datasets
This proposal includes details of several alternative mechanisms for describing Web APIs related the open data sets. The focus of this discuss…
-
### What happens?
![image](https://github.com/scalar/scalar/assets/1831308/76f29869-1f5e-48fa-922a-2b08b283b40a)
`Authorization` header doesn't set in CDN mode.
I think it's related with `$ref`…
-
When I feed an API with the following responses definition:
``` YAML
responses:
'200':
description: Request was successful
schema:
type: object
```
the …
-
I want to replace the value list of an array with a new list of values. However, the two overlay implementations I've tried treat the following example as "append to an array" rather than "replace an …