Skip to content

Commit e088355

Browse files
patrick thorntonpatrick thornton
authored andcommitted
change equality to work for any type
1 parent 5f98485 commit e088355

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

fern/openapi-overrides.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -799,7 +799,7 @@ components:
799799
- "$ref": '#/components/schemas/string_filter'
800800
- "$ref": '#/components/schemas/comparison_filter'
801801

802-
# equality operators (=, !=) can work with strings or integers
802+
# equality operators (=, !=) can work with any type
803803
equality_filter:
804804
type: object
805805
properties:
@@ -817,6 +817,11 @@ components:
817817
oneOf:
818818
- type: string
819819
- type: integer
820+
- type: array
821+
items:
822+
oneOf:
823+
- type: string
824+
- type: integer
820825
required:
821826
- operator
822827
- value

0 commit comments

Comments
 (0)