When add_filter_examples is enabled, the system generates consolidated filter examples based on schema information. The following example shows an operation description that includes a JSON line:
Schema: {"output": {"fields": [{"name": "id", "type": "integer"}, {"name": "name", "type": "string"}]}}

Enabling add_filter_examples results in this consolidated output:

Filter Examples:
https://api.example.com/items?filter=id>0
https://api.example.com/items?filter=id>0 AND name="value"
If only one field is present:
Filter: id>0
Follow these rules for filter example generation:
  • A filter query parameter must already exist in the operation or at the path level for this feature to work.
  • Multi-field mode supports up to three predicates combined into one line.
  • Each predicate is rendered as a full URL using the first server entry as the base.
  • No separate usage lines are added. The header Filter Examples: precedes the URLs.
  • The first predicate becomes the example value on the filter parameter.
  • Idempotent behavior ensures re-running enrichment does not duplicate examples or append additional URL lines.