docs: generate OAS for 2.11.3 (#13973)

This commit is contained in:
Shahed Nasser
2025-11-12 09:24:54 +02:00
committed by GitHub
parent a85778679e
commit 66d4ba105e
41 changed files with 15580 additions and 29 deletions

View File

@@ -658,21 +658,21 @@ get:
title: $eq
description: Filter by an exact match.
$ne:
type: string
type: number
title: $ne
description: Filter by values not equal to this parameter.
$in:
type: array
description: Filter by values in this array.
items:
type: string
type: number
title: $in
description: Filter by values in this array.
$nin:
type: array
description: Filter by values not in this array.
items:
type: string
type: number
title: $nin
description: Filter by values not in this array.
$not:
@@ -697,25 +697,25 @@ get:
Filter by values not matching the conditions in this
parameter.
$gt:
type: string
type: number
title: $gt
description: >-
Filter by values greater than this parameter. Useful for numbers
and dates only.
$gte:
type: string
type: number
title: $gte
description: >-
Filter by values greater than or equal to this parameter. Useful
for numbers and dates only.
$lt:
type: string
type: number
title: $lt
description: >-
Filter by values less than this parameter. Useful for numbers and
dates only.
$lte:
type: string
type: number
title: $lte
description: >-
Filter by values less than or equal to this parameter. Useful for