You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: search.yml
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -64,18 +64,24 @@ definitions:
64
64
65
65
FilterSearchRequest:
66
66
type: object
67
+
description: "Allows to filter the search results based on the Person's `name`."
67
68
properties:
68
69
op:
69
70
$ref: '#/definitions/FilterOpEnum'
70
71
field:
71
72
type: string
73
+
description: "`name` of the Person."
72
74
value:
73
75
type: array
76
+
description: "The list of `name` values against which the `field` is compared."
74
77
items:
75
78
type: string
76
79
77
80
FilterOpEnum:
78
81
type: string
82
+
description: "The filter condition, determines the type of comparison to be performed on the `name` values of the Person entity. <br><br>When set to `in`,
83
+
the `name` values of the Person should match any of the values specified in the `value` list. <br><br>When set to `nin`,
84
+
the `name` values of the Person should not match any of the values specified in the `value` list."
0 commit comments