For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Book a demoLog inStart for free
  • Overview
    • What is an API definition?
    • Project structure
      • Overview
      • Overrides
      • Authentication
      • Servers
      • Sync your specification
        • Overview
        • Audiences
        • Availability
        • Request + response examples
        • Ignoring elements
        • Server names
Checking status...
SOC2Soc 2 Type II
© 2026 Fern • Birch Solutions, Inc., a Postman company

Documentation

SDKsDocsAsk FernCLI Reference

API Definitions

OpenAPIAsyncAPIOpenRPCgRPC

Resources

BlogSupportPricing

Company

Brand KitPrivacy PolicyTerms of Service
LogoLogo
Book a demoLog inStart for free
AsyncAPIExtensions

Ignoring operations, channels, or schemas

||View as Markdown|
Was this page helpful?
Edit this page
Previous

Request + response examples

Next

Server names

Use x-fern-ignore to exclude specific operations, channels, or schemas from SDK generation:

asyncapi.yml
1operations:
2 debugOperation:
3 action: send
4 channel:
5 $ref: '#/channels/debug'
6 x-fern-ignore: true
7 summary: Debug operation (internal only)
8
9channels:
10 internal/debug:
11 address: internal/debug
12 x-fern-ignore: true
13 messages:
14 DebugMessage:
15 $ref: '#/components/messages/DebugMessage'