> For clean Markdown content of this page, append .md to this URL. For the complete documentation index, see https://buildwithfern.com/learn/llms.txt.

## 0.41.5

**`(fix):`** Fix an issue with non-deterministic file ordering when OpenAPI is used as input.

## 0.41.4

**`(feat):`** The Fern OpenAPI importer now handles importing an array for the `type` key.

```
User:
  properties:
    name:
      type: ["string"]
    id:
      type: ["string", "number"]
```

## 0.41.3

**`(feat):`** Allow referencing by method and path. For example, when configuring an
oauth scheme you can now do:

```oauth.yml
auth-schemes:
  OAuth:
    scheme: oauth
    type: client-credentials
    get-token:
      endpoint: POST /oauth/token
api:
  auth: OAuth
```