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.
预约演示登录免费开始
  • 概览
    • 什么是 API 定义?
    • 项目结构
      • 概览
      • 覆盖层(Overlays)
      • 覆盖(Overrides)
      • 身份验证
      • 服务器
      • 同步您的规范
        • 概览
        • API 版本
        • 受众
        • 可用性
        • 基础路径
        • 默认值
        • 枚举描述、名称和可用性
        • API Explorer 控制
        • 全局请求头
        • 忽略元素
        • SDK 变量
        • SDK 方法名称
        • 参数名称
        • 属性名称
        • 幂等性
        • 分页
        • 重试行为
        • Schema 名称
        • 服务器名称和 URL 模板化
        • 模式名称
        • 服务器名称和 URL 模板化
      • OpenAPI generators.yml 参考
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
预约演示登录免费开始
在本页
  • 忽略端点
  • 忽略模式
  • 忽略属性
  • 忽略参数
OpenAPI扩展

忽略元素

||以 Markdown 格式查看|
此页面是否有帮助?
在仪表板中编辑
上一个

全局请求头

下一个

自定义 SDK 方法名称

如果您希望 Fern 跳过读取任何端点、模式、属性或参数,请使用 x-fern-ignore 扩展。

忽略端点

要跳过端点,请在操作级别添加 x-fern-ignore: true。

openapi.yml 中操作级别的 x-fern-ignore
1paths:
2 /users:
3 get:
4 x-fern-ignore: true
5 ...

忽略模式

要跳过模式,请在模式级别添加 x-fern-ignore: true。

openapi.yml 中模式级别的 x-fern-ignore
1components:
2 schemas:
3 SchemaToSkip:
4 x-fern-ignore: true
5 ...

忽略属性

要跳过模式中的属性,请在属性级别添加 x-fern-ignore: true。

openapi.yml 中属性级别的 x-fern-ignore
1components:
2 schemas:
3 User:
4 type: object
5 properties:
6 name:
7 type: string
8 internalField:
9 x-fern-ignore: true
10 type: string

忽略参数

要跳过参数,请在参数级别添加 x-fern-ignore: true。

openapi.yml 中参数级别的 x-fern-ignore
1paths:
2 /users:
3 get:
4 parameters:
5 - name: internalParam
6 in: query
7 x-fern-ignore: true
8 schema:
9 type: string

要在不修改基础规范的情况下跳过参数,请在您的覆盖文件中使用 null 值来删除参数:

overrides.yml
1paths:
2 /users:
3 get:
4 parameters:
5 - null # 从基础规范中删除第一个参数