addedInput schema / properties / filters
Added value: +{
+ "description": "Structured filters; values are always parameterized",
+ "items": {
+ "additionalProperties": false,
+ "properties": {
+ "column": {
+ "minLength": 1,
+ "type": "string"
+ },
+ "operator": {
+ "enum": [
+ "eq",
+ "ne",
+ "gt",
+ "gte",
+ "lt",
+ "lte",
+ "like",
+ "in",
+ "isNull",
+ "isNotNull"
+ ],
+ "type": "string"
+ },
+ "value": {
+ "anyOf": [
+ {
+ "type": "string"
+ },
+ {
+ "type": "number"
+ },
+ {
+ "type": "boolean"
+ },
+ {
+ "type": "null"
+ },
+ {
+ "items": {
+ "type": [
+ "string",
+ "number",
+ "boolean"
+ ]
+ },
+ "maxItems": 100,
+ "minItems": 1,
+ "type": "array"
+ }
+ ]
+ }
+ },
+ "required": [
+ "column",
+ "operator"
+ ],
+ "type": "object"
+ },
+ "maxItems": 20,
+ "type": "array"
+}
addedInput schema / properties / first / default
Added value: +100
changedInput schema / properties / first / description
Previous value: -"Number of rows to retrieve (FIRST clause in Firebird)"New value: +"Number of rows to retrieve (maximum: 1000)"
addedInput schema / properties / first / maximum
Added value: +1000
removedInput schema / properties / orderBy / description
Removed value: -"Optional ORDER BY clause (without the ORDER BY keyword)"
addedInput schema / properties / orderBy / items
Added value: +{
+ "additionalProperties": false,
+ "properties": {
+ "column": {
+ "minLength": 1,
+ "type": "string"
+ },
+ "direction": {
+ "default": "ASC",
+ "enum": [
+ "ASC",
+ "DESC"
+ ],
+ "type": "string"
+ }
+ },
+ "required": [
+ "column"
+ ],
+ "type": "object"
+}
addedInput schema / properties / orderBy / maxItems
Added value: +10
changedInput schema / properties / orderBy / type
Previous value: -"string"New value: +"array"
addedInput schema / properties / skip / default
Added value: +0
changedInput schema / properties / skip / description
Previous value: -"Number of rows to skip (SKIP clause in Firebird)"New value: +"Number of rows to skip"
addedInput schema / properties / skip / maximum
Added value: +1000000
removedInput schema / properties / where
Removed value: -{
- "description": "Optional WHERE clause (without the WHERE keyword)",
- "type": "string"
-}